diff options
Diffstat (limited to 'examples/help_categories.py')
-rwxr-xr-x | examples/help_categories.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/help_categories.py b/examples/help_categories.py index d9a7cce2..80c976c1 100755 --- a/examples/help_categories.py +++ b/examples/help_categories.py @@ -33,8 +33,7 @@ class HelpCategories(cmd2.Cmd): CMD_CAT_SERVER_INFO = 'Server Information' def __init__(self): - # Set use_ipython to True to enable the "ipy" command which embeds and interactive IPython shell - super().__init__(use_ipython=False) + super().__init__() def do_connect(self, _): """Connect command""" |