From 7eba947dab35716fc59f88bc7b17fdae0de1d1a3 Mon Sep 17 00:00:00 2001 From: Todd Leonhardt Date: Wed, 17 Jun 2020 21:09:43 -0400 Subject: Sort imports using isort --- examples/modular_commands/commandset_basic.py | 2 +- examples/modular_commands/commandset_custominit.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/modular_commands') 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 diff --git a/examples/modular_commands/commandset_custominit.py b/examples/modular_commands/commandset_custominit.py index ce49876a..d96c5f1c 100644 --- a/examples/modular_commands/commandset_custominit.py +++ b/examples/modular_commands/commandset_custominit.py @@ -2,7 +2,7 @@ """ A simple example demonstrating a loadable command set """ -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 @register_command -- cgit v1.2.1