diff options
| author | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
|---|---|---|
| committer | Scott <[email protected]> | 2022-02-02 12:13:27 -0800 |
| commit | 31c81f6539969a5eba864d3305f9fb7bf716a367 (patch) | |
| tree | 497c8911d370002ac195d31d196ba5bcd6da6db8 /remote_worker.py | |
| parent | 5317c50ce7a96a37acfab3800c0935580766dbbf (diff) | |
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'remote_worker.py')
| -rwxr-xr-x | remote_worker.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/remote_worker.py b/remote_worker.py index 12a5028..82b80ea 100755 --- a/remote_worker.py +++ b/remote_worker.py @@ -7,8 +7,8 @@ results. import logging import os import signal -import threading import sys +import threading import time from typing import Optional @@ -21,7 +21,6 @@ import config from stopwatch import Timer from thread_utils import background_thread - logger = logging.getLogger(__file__) cfg = config.add_commandline_args( |
