summaryrefslogtreecommitdiff
path: root/tests/test_parsing.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 23:24:47 -0500
committerTodd Leonhardt <todd.leonhardt@gmail.com>2021-01-31 23:24:47 -0500
commit9cb49fb2a3b980f97d5fb27ea37c6dfeee3b9ec4 (patch)
tree6d03d9b69ca6472211deb512ab80469f7b7d4802 /tests/test_parsing.py
parent43be550b235f88007c4c1792a7caff38c5ba271f (diff)
downloadcmd2-git-9cb49fb2a3b980f97d5fb27ea37c6dfeee3b9ec4.tar.gz
Add in isort changes
Diffstat (limited to 'tests/test_parsing.py')
-rwxr-xr-xtests/test_parsing.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/test_parsing.py b/tests/test_parsing.py
index 291b0f55..9776dace 100755
--- a/tests/test_parsing.py
+++ b/tests/test_parsing.py
@@ -997,7 +997,9 @@ def test_is_valid_command_valid(parser):
def test_macro_normal_arg_pattern():
# This pattern matches digits surrounded by exactly 1 brace on a side and 1 or more braces on the opposite side
- from cmd2.parsing import MacroArg
+ from cmd2.parsing import (
+ MacroArg,
+ )
pattern = MacroArg.macro_normal_arg_pattern
@@ -1049,7 +1051,9 @@ def test_macro_normal_arg_pattern():
def test_macro_escaped_arg_pattern():
# This pattern matches digits surrounded by 2 or more braces on both sides
- from cmd2.parsing import MacroArg
+ from cmd2.parsing import (
+ MacroArg,
+ )
pattern = MacroArg.macro_escaped_arg_pattern