summaryrefslogtreecommitdiff
path: root/cmd2/cmd2.py
diff options
context:
space:
mode:
Diffstat (limited to 'cmd2/cmd2.py')
-rw-r--r--cmd2/cmd2.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/cmd2/cmd2.py b/cmd2/cmd2.py
index 04758ed7..ce19cda8 100644
--- a/cmd2/cmd2.py
+++ b/cmd2/cmd2.py
@@ -1620,15 +1620,6 @@ class Cmd(cmd.Cmd):
return raw
# noinspection PyMethodMayBeStatic
- def postparse(self, statement: Statement) -> Statement:
- """Hook that runs immediately after parsing the user input.
-
- :param statement: Statement object populated by parsing
- :return: Statement - potentially modified Statement object
- """
- return statement
-
- # noinspection PyMethodMayBeStatic
def postparsing_precmd(self, statement: Statement) -> Tuple[bool, Statement]:
"""This runs after parsing the command-line, but before anything else; even before adding cmd to history.