We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b98d7b commit 8cd23fbCopy full SHA for 8cd23fb
tests/test_load_config_files.py
@@ -146,7 +146,7 @@ class ShlexConfigTap(Tap):
146
with open(fname, 'w') as f:
147
f.write('--a 21 # Important arg value\n\n# Multi-word quoted string\n--b "two three four"')
148
149
- args = ShlexConfigTap(config_files=[fname]).parse_args()
+ args = ShlexConfigTap(config_files=[fname]).parse_args([])
150
151
self.assertEqual(args.a, 21)
152
self.assertEqual(args.b, 'two three four')
0 commit comments