Used isort to sort imports. Also added to the git pre-commit hook.
[python_utils.git] / file_utils.py
index f273ea4f9a5fe08da8c1f15e3108c65b7c33d0ea..905e23b16df017d3cab6c6ef27ce61ee8596c112 100644 (file)
@@ -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__)