diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-26 02:33:18 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-26 02:33:18 -0400 |
commit | e34bba44ef53228aeba613ac6e928b2c315111cf (patch) | |
tree | a39a736c3a36426fe6c278105ce9f6ec5696d16c /cmd2/argparse_completer.py | |
parent | e6f65e607c6ad2350dfce05f3d5080d0ffbe35f1 (diff) | |
download | cmd2-git-e34bba44ef53228aeba613ac6e928b2c315111cf.tar.gz |
Moved code related to ANSI escape codes to new file called ansi.py
Diffstat (limited to 'cmd2/argparse_completer.py')
-rw-r--r-- | cmd2/argparse_completer.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/argparse_completer.py b/cmd2/argparse_completer.py index 6b3f5298..c3f73552 100644 --- a/cmd2/argparse_completer.py +++ b/cmd2/argparse_completer.py @@ -68,8 +68,8 @@ from typing import List, Dict, Tuple, Callable, Union from colorama import Fore +from .ansi import ansi_safe_wcswidth from .rl_utils import rl_force_redisplay -from .utils import ansi_safe_wcswidth # attribute that can optionally added to an argparse argument (called an Action) to # define the completion choices for the argument. You may provide a Collection or a Function. |