diff options
Diffstat (limited to 'cmd2/utils.py')
-rw-r--r-- | cmd2/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd2/utils.py b/cmd2/utils.py index f7ca29c2..9cbea915 100644 --- a/cmd2/utils.py +++ b/cmd2/utils.py @@ -24,7 +24,7 @@ def is_quoted(arg: str) -> bool: """ Checks if a string is quoted :param arg: the string being checked for quotes - :return: True if a string is quotes + :return: True if a string is quoted """ return len(arg) > 1 and arg[0] == arg[-1] and arg[0] in constants.QUOTES |