diff options
Diffstat (limited to 'cmd2/ansi.py')
-rw-r--r-- | cmd2/ansi.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/ansi.py b/cmd2/ansi.py index a6c09413..f172b87f 100644 --- a/cmd2/ansi.py +++ b/cmd2/ansi.py @@ -6,10 +6,10 @@ setting the window title, and asynchronous alerts. import functools import re from enum import Enum -from typing import Any, IO, List, Union +from typing import IO, Any, List, Union import colorama -from colorama import Fore, Back, Style +from colorama import Back, Fore, Style from wcwidth import wcswidth # On Windows, filter ANSI escape codes out of text sent to stdout/stderr, and replace them with equivalent Win32 calls |