summaryrefslogtreecommitdiff
path: root/examples/modular_commands/commandset_custominit.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/modular_commands/commandset_custominit.py')
-rw-r--r--examples/modular_commands/commandset_custominit.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/examples/modular_commands/commandset_custominit.py b/examples/modular_commands/commandset_custominit.py
index 2ef94a75..e24ac291 100644
--- a/examples/modular_commands/commandset_custominit.py
+++ b/examples/modular_commands/commandset_custominit.py
@@ -2,7 +2,12 @@
"""
A simple example demonstrating a loadable command set
"""
-from cmd2 import Cmd, CommandSet, Statement, with_default_category
+from cmd2 import (
+ Cmd,
+ CommandSet,
+ Statement,
+ with_default_category,
+)
@with_default_category('Custom Init')