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 /arper.py | |
| parent | 5317c50ce7a96a37acfab3800c0935580766dbbf (diff) | |
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'arper.py')
| -rw-r--r-- | arper.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,19 +6,19 @@ import datetime import logging import os -from typing import Any, Optional import warnings +from typing import Any, Optional from overrides import overrides import argparse_utils -from collect.bidict import BiDict import config import exec_utils import file_utils import persistent -import string_utils import site_config +import string_utils +from collect.bidict import BiDict logger = logging.getLogger(__name__) |
