summaryrefslogtreecommitdiff
path: root/ansi.py
diff options
context:
space:
mode:
authorScott <[email protected]>2022-02-02 12:13:27 -0800
committerScott <[email protected]>2022-02-02 12:13:27 -0800
commit31c81f6539969a5eba864d3305f9fb7bf716a367 (patch)
tree497c8911d370002ac195d31d196ba5bcd6da6db8 /ansi.py
parent5317c50ce7a96a37acfab3800c0935580766dbbf (diff)
Used isort to sort imports. Also added to the git pre-commit hook.
Diffstat (limited to 'ansi.py')
-rwxr-xr-xansi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ansi.py b/ansi.py
index 6897291..c13e352 100755
--- 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