diff options
| author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-04 23:36:49 -0500 |
|---|---|---|
| committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2020-02-04 23:36:49 -0500 |
| commit | d812fbc4d6dbd31c643caf4f8561f47ee8cb58aa (patch) | |
| tree | cf4e4e3440fce1c98084d31e05194fe4265cdf9a /cmd2/py_bridge.py | |
| parent | ed83f7cfedfdcf8620e0feb9a8c6b98cd69dda16 (diff) | |
| download | cmd2-git-d812fbc4d6dbd31c643caf4f8561f47ee8cb58aa.tar.gz | |
Removed unnecessary inheritance from object
Diffstat (limited to 'cmd2/py_bridge.py')
| -rw-r--r-- | cmd2/py_bridge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/py_bridge.py b/cmd2/py_bridge.py index 0a1b6ee7..b7346d22 100644 --- a/cmd2/py_bridge.py +++ b/cmd2/py_bridge.py @@ -53,7 +53,7 @@ class CommandResult(namedtuple_with_defaults('CommandResult', ['stdout', 'stderr return not self.stderr -class PyBridge(object): +class PyBridge: """Provides a Python API wrapper for application commands.""" def __init__(self, cmd2_app): self._cmd2_app = cmd2_app |
