summaryrefslogtreecommitdiff
path: root/cmd2/exceptions.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-02-19 21:40:15 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-02-19 21:40:15 -0500
commit486b8c726a7d657ef320e68598077c31fa664790 (patch)
tree46b53d0f530d6ae273c4379272684ee80026658a /cmd2/exceptions.py
parent3e180a810e9c4b9d251c135667d1d150b0bbd0dd (diff)
downloadcmd2-git-486b8c726a7d657ef320e68598077c31fa664790.tar.gz
Fixed black, isort, flake8, and doc8 issues
Diffstat (limited to 'cmd2/exceptions.py')
-rw-r--r--cmd2/exceptions.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd2/exceptions.py b/cmd2/exceptions.py
index b6e18856..c662d8fa 100644
--- a/cmd2/exceptions.py
+++ b/cmd2/exceptions.py
@@ -48,6 +48,7 @@ class CompletionError(Exception):
- A previous command line argument that determines the data set being completed is invalid
- Tab completion hints
"""
+
def __init__(self, *args, apply_style: bool = True, **kwargs):
"""
Initializer for CompletionError
@@ -60,6 +61,7 @@ class CompletionError(Exception):
# noinspection PyArgumentList
super().__init__(*args, **kwargs)
+
############################################################################################################
# The following exceptions are NOT part of the public API and are intended for internal use only.
############################################################################################################