Used isort to sort imports. Also added to the git pre-commit hook.
[python_utils.git] / ansi.py
diff --git a/ansi.py b/ansi.py
index 6897291ba252f91c866b967cd18e0aa13f0f151d..c13e3522fe187efad36ae73de6d174ee76c4b2aa 100755 (executable)
--- a/ansi.py
+++ b/ansi.py
@@ -1,11 +1,11 @@
 #!/usr/bin/env python3
 
-from abc import abstractmethod
 import difflib
 import io
 import logging
 import re
 import sys
+from abc import abstractmethod
 from typing import Any, Callable, Dict, Iterable, Optional, Tuple
 
 from overrides import overrides