update docstrings and comments

This commit is contained in:
Nick Sweeting 2019-04-22 14:42:04 -04:00
parent ab68819332
commit 2f0dbeebc1
4 changed files with 6 additions and 5 deletions

View file

@ -8,7 +8,7 @@ from importlib import import_module
CLI_DIR = os.path.dirname(os.path.abspath(__file__))
# these common commands will appear sorted before any others for ease-of-use
display_first = ('help', 'version', 'init', 'list', 'update', 'add', 'remove')
display_first = ('help', 'version', 'init', 'info', 'list', 'update', 'add', 'remove')
# every imported command module must have these properties in order to be valid
required_attrs = ('__package__', '__command__', 'main')