Skip to content

Commit 6d3db1a

Browse files
adev-codekdaily
andauthored
Apply suggestion from @kdaily
Co-authored-by: Kenneth Daily <kdaily@amazon.com>
1 parent 968a5a9 commit 6d3db1a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/unit/test_argprocess.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -904,7 +904,13 @@ def _test_percent_escaping(self, arg_type, arg_class, doc_string):
904904
}
905905
}
906906
)
907-
arg = arg_class('test-arg', argument.argument_model.members['Test'], mock.Mock(), mock.Mock(), is_required=False)
907+
arg = arg_class(
908+
'test-arg',
909+
argument.argument_model.members['Test'],
910+
mock.Mock(),
911+
mock.Mock(),
912+
is_required=False,
913+
)
908914
arg_table = {arg.name: arg}
909915
parser = ArgTableArgParser(arg_table)
910916
help_output = parser.format_help()

0 commit comments

Comments
 (0)