diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-07 21:45:52 -0400 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-07-07 21:45:52 -0400 |
| commit | bb2dd69bd04f5dccff9474c018eb6b6eea74c6af (patch) | |
| tree | 543f626a84ac96d97c478e4e1af185ce07831908 /cmd2/__init__.py | |
| parent | f8db8b766540920de6c85a26a6740170455b9354 (diff) | |
| download | cmd2-git-bb2dd69bd04f5dccff9474c018eb6b6eea74c6af.tar.gz | |
Moved all custom argparse classes intended for normal development to argparse_custom.py.
Lazy loading AutoCompleter in cmd2 instance methods to allow argparse_completer.py to import
cmd2.Cmd class. This Architecture makes more sense because AutoCompleter depends on cmd2.Cmd.
Diffstat (limited to 'cmd2/__init__.py')
| -rw-r--r-- | cmd2/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd2/__init__.py b/cmd2/__init__.py index d3c92636..3b149601 100644 --- a/cmd2/__init__.py +++ b/cmd2/__init__.py @@ -11,6 +11,7 @@ except DistributionNotFound: pass from .ansi import style +from .argparse_custom import Cmd2ArgParser, CompletionItem from .cmd2 import Cmd, Statement, EmptyStatement, categorize from .cmd2 import with_argument_list, with_argparser, with_argparser_and_unknown_args, with_category from .constants import DEFAULT_SHORTCUTS |
