diff options
| author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-02-20 15:12:24 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-20 15:12:24 -0500 |
| commit | a2061ba7ce9e8482111d670e78fe890cf485b7c5 (patch) | |
| tree | b15906e7b7c3a4cac0013599431652cb9a654911 /cmd2/__init__.py | |
| parent | 660d41b404c00db5b757fd6888c50cb4903ad8ac (diff) | |
| parent | a62622a886713c845ba561d98778993c6362f65a (diff) | |
| download | cmd2-git-a2061ba7ce9e8482111d670e78fe890cf485b7c5.tar.gz | |
Merge pull request #895 from python-cmd2/relocate_functions
Moved categorize() to utils.py and made set_parser_prog() non-public
Diffstat (limited to 'cmd2/__init__.py')
| -rw-r--r-- | cmd2/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd2/__init__.py b/cmd2/__init__.py index 63e27812..eb5c275d 100644 --- a/cmd2/__init__.py +++ b/cmd2/__init__.py @@ -24,7 +24,7 @@ if cmd2_parser_module is not None: from .argparse_custom import DEFAULT_ARGUMENT_PARSER from .cmd2 import Cmd from .constants import COMMAND_NAME, DEFAULT_SHORTCUTS -from .decorators import categorize, with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category +from .decorators import with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category from .parsing import Statement from .py_bridge import CommandResult -from .utils import CompletionError, Settable +from .utils import categorize, CompletionError, Settable |
