diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2020-06-17 21:09:43 -0400 |
---|---|---|
committer | anselor <anselor@gmail.com> | 2020-08-04 13:38:08 -0400 |
commit | 7eba947dab35716fc59f88bc7b17fdae0de1d1a3 (patch) | |
tree | e08ffb253a6b50c038c5050bb9633b1010680797 /cmd2 | |
parent | 30d15da7dc90da0dde5072e23f16784e9b94d43d (diff) | |
download | cmd2-git-7eba947dab35716fc59f88bc7b17fdae0de1d1a3.tar.gz |
Sort imports using isort
Diffstat (limited to 'cmd2')
-rw-r--r-- | cmd2/command_definition.py | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/cmd2/command_definition.py b/cmd2/command_definition.py index 64e02fc8..d9925969 100644 --- a/cmd2/command_definition.py +++ b/cmd2/command_definition.py @@ -3,13 +3,8 @@ Supports the definition of commands in separate classes to be composed into cmd2.Cmd """ import functools -from typing import ( - Callable, - Dict, - Iterable, - Optional, - Type, -) +from typing import Callable, Dict, Iterable, Optional, Type + from .constants import COMMAND_FUNC_PREFIX # Allows IDEs to resolve types without impacting imports at runtime, breaking circular dependency issues |