diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-08-09 11:18:38 -0400 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-08-09 11:18:38 -0400 |
| commit | 5643d567eefc6789b621db024eab31eb471fb90c (patch) | |
| tree | ea87e1ab0de07be0328f87778de0391442851e6d | |
| parent | 20d2abbc101c1f75d9c3d3fb4d1955ed5100a923 (diff) | |
| download | cmd2-git-5643d567eefc6789b621db024eab31eb471fb90c.tar.gz | |
Small change for consistent code style in method
| -rwxr-xr-x | cmd2/cmd2.py | 2 |
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 |
