From 31c81f6539969a5eba864d3305f9fb7bf716a367 Mon Sep 17 00:00:00 2001 From: Scott Date: Wed, 2 Feb 2022 12:13:27 -0800 Subject: Used isort to sort imports. Also added to the git pre-commit hook. --- file_utils.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'file_utils.py') 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__) -- cgit v1.3