(msg: str)
| 97 | # ─── Utilities ─────────────────────────────────────────────────────────────── |
| 98 | |
| 99 | def log(msg: str): |
| 100 | if CONFIG["log_requests"]: |
| 101 | sys.stderr.write(f"[{time.strftime('%H:%M:%S')}] {msg}\n") |
| 102 | sys.stderr.flush() |
| 103 | |
| 104 | |
| 105 | def load_cookie() -> tuple: |
no outgoing calls
no test coverage detected