diff options
Diffstat (limited to 'examples/help_categories.py')
-rwxr-xr-x | examples/help_categories.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/help_categories.py b/examples/help_categories.py index 7401bafe..0b25375a 100755 --- a/examples/help_categories.py +++ b/examples/help_categories.py @@ -8,7 +8,9 @@ It also demonstrates the effects of decorator order when it comes to argparse er import functools import cmd2 -from cmd2 import COMMAND_NAME +from cmd2 import ( + COMMAND_NAME, +) def my_decorator(f): |