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 /file_utils.py | |
| parent | 5317c50ce7a96a37acfab3800c0935580766dbbf (diff) | |
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'file_utils.py')
| -rw-r--r-- | file_utils.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/file_utils.py b/file_utils.py index f273ea4..905e23b 100644 --- a/file_utils.py +++ b/file_utils.py @@ -4,20 +4,18 @@ import datetime import errno +import glob import hashlib +import io import logging import os -import io import pathlib import re import time -from typing import Optional -import glob -from os.path import isfile, join, exists -from typing import List, TextIO +from os.path import exists, isfile, join +from typing import List, Optional, TextIO from uuid import uuid4 - logger = logging.getLogger(__name__) |
