diff options
author | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-26 00:24:08 -0400 |
---|---|---|
committer | Kevin Van Brunt <kmvanbrunt@gmail.com> | 2019-06-26 00:24:08 -0400 |
commit | db984de915944d6421e70b2064400fb3c0ec2f9c (patch) | |
tree | 1f485d1bb6a0bca502ceaf06d617ab3524649e73 /cmd2/parsing.py | |
parent | 61698b2fc28daad462da9e459318e3208e0d7920 (diff) | |
download | cmd2-git-db984de915944d6421e70b2064400fb3c0ec2f9c.tar.gz |
Removed unneeded (optional) text from docstrings
Diffstat (limited to 'cmd2/parsing.py')
-rw-r--r-- | cmd2/parsing.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py index f705128c..86087db1 100644 --- a/cmd2/parsing.py +++ b/cmd2/parsing.py @@ -257,11 +257,11 @@ class StatementParser: * multiline commands * shortcuts - :param allow_redirection: (optional) should redirection and pipes be allowed? - :param terminators: (optional) iterable containing strings which should terminate multiline commands - :param multiline_commands: (optional) iterable containing the names of commands that accept multiline input - :param aliases: (optional) dictionary contaiing aliases - :param shortcuts (optional) an iterable of tuples with each tuple containing the shortcut and the expansion + :param allow_redirection: should redirection and pipes be allowed? + :param terminators: iterable containing strings which should terminate multiline commands + :param multiline_commands: iterable containing the names of commands that accept multiline input + :param aliases: dictionary containing aliases + :param shortcuts: an iterable of tuples with each tuple containing the shortcut and the expansion """ self.allow_redirection = allow_redirection if terminators is None: |