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. --- text_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'text_utils.py') diff --git a/text_utils.py b/text_utils.py index 0d07905..534813c 100644 --- a/text_utils.py +++ b/text_utils.py @@ -2,15 +2,14 @@ """Utilities for dealing with "text".""" -from collections import defaultdict import logging import math import sys +from collections import defaultdict from typing import Dict, Generator, List, NamedTuple, Optional from ansi import fg, reset - logger = logging.getLogger(__file__) -- cgit v1.3