summaryrefslogtreecommitdiff
path: root/examples/python_scripting.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 22:29:57 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 22:29:57 -0500
commitf456b802754c3d1095b488d670bebba21018d823 (patch)
treebf7011f585a8a35ab4cc7ff98aaeebed4de87f84 /examples/python_scripting.py
parent918200c02d392c17862fff81bbf58820ed15c725 (diff)
downloadcmd2-git-f456b802754c3d1095b488d670bebba21018d823.tar.gz
Add black for automatic code format
Diffstat (limited to 'examples/python_scripting.py')
-rwxr-xr-xexamples/python_scripting.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples/python_scripting.py b/examples/python_scripting.py
index 5d3f43b3..9465f697 100755
--- a/examples/python_scripting.py
+++ b/examples/python_scripting.py
@@ -24,9 +24,7 @@ import argparse
import os
import cmd2
-from cmd2 import (
- ansi,
-)
+from cmd2 import ansi
class CmdLineApp(cmd2.Cmd):
@@ -120,5 +118,6 @@ class CmdLineApp(cmd2.Cmd):
if __name__ == '__main__':
import sys
+
c = CmdLineApp()
sys.exit(c.cmdloop())