diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-03-18 22:47:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 22:47:24 -0400 |
commit | 57dd827963491439e40eb5dfe20811c14ea757ff (patch) | |
tree | 9503d37d813a83a4c991d8ff8b2ed92e4a97e4ce /examples/async_printing.py | |
parent | 83a28727d012ab067d18d89d3b1ce6410459f67b (diff) | |
parent | 4523bc6a9fc36ff879b6767dcd23923aa40c4c47 (diff) | |
download | cmd2-git-57dd827963491439e40eb5dfe20811c14ea757ff.tar.gz |
Merge pull request #648 from python-cmd2/attributes
Converted class attributes to instance attributes
Diffstat (limited to 'examples/async_printing.py')
-rwxr-xr-x | examples/async_printing.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/async_printing.py b/examples/async_printing.py index dddbc352..60119a9c 100755 --- a/examples/async_printing.py +++ b/examples/async_printing.py @@ -32,7 +32,6 @@ class AlerterApp(cmd2.Cmd): def __init__(self, *args, **kwargs) -> None: """ Initializer """ - super().__init__(*args, **kwargs) self.prompt = "(APR)> " |