mirror of
https://github.com/borgmatic-collective/borgmatic.git
synced 2026-07-22 02:03:01 +02:00
replace double quotes with single quotes
This commit is contained in:
@@ -86,8 +86,8 @@ def has_required_param_options(action: Action):
|
||||
action.required is True
|
||||
or action.nargs
|
||||
in (
|
||||
"+",
|
||||
"*",
|
||||
'+',
|
||||
'*',
|
||||
)
|
||||
or '--archive' in action.option_strings
|
||||
or action.metavar in ('PATTERN', 'KEYS', 'N')
|
||||
@@ -130,7 +130,7 @@ def exact_options_completion(action: Action):
|
||||
|
||||
|
||||
def dedent_strip_as_tuple(string: str):
|
||||
return (dedent(string).strip("\n"),)
|
||||
return (dedent(string).strip('\n'),)
|
||||
|
||||
|
||||
def fish_completion():
|
||||
|
||||
Reference in New Issue
Block a user