(msg)
| 197 | |
| 198 | |
| 199 | def log(msg): |
| 200 | line = f"[{time.strftime('%H:%M:%S')}] {msg}" |
| 201 | print(line, flush=True) |
| 202 | if LOG: |
| 203 | with open(LOG, "a") as f: |
| 204 | f.write(line + "\n") |
| 205 | |
| 206 | |
| 207 | def load_key(prov, args): |
no outgoing calls
no test coverage detected