summaryrefslogtreecommitdiff
path: root/examples/modular_commands/commandset_basic.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2020-06-17 21:09:43 -0400
committeranselor <anselor@gmail.com>2020-08-04 13:38:08 -0400
commit7eba947dab35716fc59f88bc7b17fdae0de1d1a3 (patch)
treee08ffb253a6b50c038c5050bb9633b1010680797 /examples/modular_commands/commandset_basic.py
parent30d15da7dc90da0dde5072e23f16784e9b94d43d (diff)
downloadcmd2-git-7eba947dab35716fc59f88bc7b17fdae0de1d1a3.tar.gz
Sort imports using isort
Diffstat (limited to 'examples/modular_commands/commandset_basic.py')
-rw-r--r--examples/modular_commands/commandset_basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/modular_commands/commandset_basic.py b/examples/modular_commands/commandset_basic.py
index 01ce1b39..25ba976d 100644
--- a/examples/modular_commands/commandset_basic.py
+++ b/examples/modular_commands/commandset_basic.py
@@ -4,7 +4,7 @@ A simple example demonstrating a loadable command set
"""
from typing import List
-from cmd2 import Cmd, Statement, with_category, CommandSet, with_default_category, register_command
+from cmd2 import Cmd, CommandSet, Statement, register_command, with_category, with_default_category
from cmd2.utils import CompletionError