diff options
Diffstat (limited to 'examples/modular_commands/commandset_complex.py')
-rw-r--r-- | examples/modular_commands/commandset_complex.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/modular_commands/commandset_complex.py b/examples/modular_commands/commandset_complex.py index 579c0677..4905265a 100644 --- a/examples/modular_commands/commandset_complex.py +++ b/examples/modular_commands/commandset_complex.py @@ -5,10 +5,14 @@ Test CommandSet """ import argparse -from typing import List +from typing import ( + List, +) import cmd2 -from cmd2 import utils +from cmd2 import ( + utils, +) @cmd2.with_default_category('Fruits') |