replace double quotes with single quotes
This commit is contained in:
parent
5a7a1747f2
commit
59a6ce1462
1 changed files with 3 additions and 3 deletions
|
@ -86,8 +86,8 @@ def has_required_param_options(action: Action):
|
||||||
action.required is True
|
action.required is True
|
||||||
or action.nargs
|
or action.nargs
|
||||||
in (
|
in (
|
||||||
"+",
|
'+',
|
||||||
"*",
|
'*',
|
||||||
)
|
)
|
||||||
or '--archive' in action.option_strings
|
or '--archive' in action.option_strings
|
||||||
or action.metavar in ('PATTERN', 'KEYS', 'N')
|
or action.metavar in ('PATTERN', 'KEYS', 'N')
|
||||||
|
@ -130,7 +130,7 @@ def exact_options_completion(action: Action):
|
||||||
|
|
||||||
|
|
||||||
def dedent_strip_as_tuple(string: str):
|
def dedent_strip_as_tuple(string: str):
|
||||||
return (dedent(string).strip("\n"),)
|
return (dedent(string).strip('\n'),)
|
||||||
|
|
||||||
|
|
||||||
def fish_completion():
|
def fish_completion():
|
||||||
|
|
Loading…
Reference in a new issue