summaryrefslogtreecommitdiff
path: root/cmd2/pyscript_bridge.py
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2019-04-10 12:29:31 -0400
committerKevin Van Brunt <kmvanbrunt@gmail.com>2019-04-10 12:29:31 -0400
commit2ec35f5a4f47a14df33831a9f65257c7b8bbcff9 (patch)
tree79b50af2e7c785fd2f13a8e7e79693ae528aa2d9 /cmd2/pyscript_bridge.py
parent372a3845be208e43f4e7060d881c290b94da4038 (diff)
downloadcmd2-git-2ec35f5a4f47a14df33831a9f65257c7b8bbcff9.tar.gz
Removed unused class member and updated comment
Diffstat (limited to 'cmd2/pyscript_bridge.py')
-rw-r--r--cmd2/pyscript_bridge.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd2/pyscript_bridge.py b/cmd2/pyscript_bridge.py
index 8f0aaf52..47ce29db 100644
--- a/cmd2/pyscript_bridge.py
+++ b/cmd2/pyscript_bridge.py
@@ -62,11 +62,9 @@ class CommandResult(namedtuple_with_defaults('CommandResult', ['stdout', 'stderr
class PyscriptBridge(object):
- """Preserves the legacy 'cmd' interface for pyscript while also providing a new python API wrapper for
- application commands."""
+ """Provides a Python API wrapper for application commands."""
def __init__(self, cmd2_app):
self._cmd2_app = cmd2_app
- self._last_result = None
self.cmd_echo = False
def __dir__(self):