(thread: str, msg: str)
| 28 | # Shared state |
| 29 | stop_poller = threading.Event() |
| 30 | def log(thread: str, msg: str) -> None: |
| 31 | ts = time.strftime("%H:%M:%S") |
| 32 | print(f"[{ts}] [{thread:6s}] {msg}", flush=True) |
| 33 | def make_client(service: str = "dynamodb"): |
| 34 | return boto3.client( |
| 35 | service, |
no outgoing calls
no test coverage detected