Explorar o código

replace double quotes with single quotes

Isaac %!s(int64=2) %!d(string=hai) anos
pai
achega
59a6ce1462
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  1. 3 3
      borgmatic/commands/completion.py

+ 3 - 3
borgmatic/commands/completion.py

@@ -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():