summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-08-09 11:18:38 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-08-09 11:18:38 -0400
commit5643d567eefc6789b621db024eab31eb471fb90c (patch)
treeea87e1ab0de07be0328f87778de0391442851e6d /cmd2/cmd2.py
parent20d2abbc101c1f75d9c3d3fb4d1955ed5100a923 (diff)
downloadcmd2-git-5643d567eefc6789b621db024eab31eb471fb90c.tar.gz
Small change for consistent code style in method
Diffstat (limited to 'cmd2/cmd2.py')
-rwxr-xr-xcmd2/cmd2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 9d29418b..6b509c20 100755
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -440,7 +440,7 @@ class Cmd(cmd.Cmd):
self.py_bridge_name = 'app'
# Defines app-specific variables/functions available in Python shells and pyscripts
- self.py_locals = {}
+ self.py_locals = dict()
# True if running inside a Python script or interactive console, False otherwise
self._in_py = False