From a3b1b6ddf81cdc0b253f15feeb167ff348afd14f Mon Sep 17 00:00:00 2001 From: Eric Lin Date: Tue, 5 Jan 2021 11:29:39 -0500 Subject: Changed isort to force wrapping of imports to reduce merge conflicts from minor import changes. --- examples/hello_cmd2.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'examples/hello_cmd2.py') diff --git a/examples/hello_cmd2.py b/examples/hello_cmd2.py index 94ec334f..06303722 100755 --- a/examples/hello_cmd2.py +++ b/examples/hello_cmd2.py @@ -3,7 +3,9 @@ """ This is intended to be a completely bare-bones cmd2 application suitable for rapid testing and debugging. """ -from cmd2 import cmd2 +from cmd2 import ( + cmd2, +) if __name__ == '__main__': import sys -- cgit v1.2.1