diff options
Diffstat (limited to 'cmd2/parsing.py')
-rwxr-xr-x | cmd2/parsing.py | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/cmd2/parsing.py b/cmd2/parsing.py index c420e9aa..acf9b471 100755 --- a/cmd2/parsing.py +++ b/cmd2/parsing.py @@ -4,12 +4,24 @@ import re import shlex -from typing import Dict, Iterable, List, Optional, Tuple, Union +from typing import ( + Dict, + Iterable, + List, + Optional, + Tuple, + Union, +) import attr -from . import constants, utils -from .exceptions import Cmd2ShlexError +from . import ( + constants, + utils, +) +from .exceptions import ( + Cmd2ShlexError, +) def shlex_split(str_to_split: str) -> List[str]: |