style: ruff format
This commit is contained in:
+6
-2
@@ -204,7 +204,9 @@ def cmd_repair(args):
|
|||||||
print(" Nothing to repair.")
|
print(" Nothing to repair.")
|
||||||
return
|
return
|
||||||
|
|
||||||
if not confirm_destructive_action("Repair", palace_path, assume_yes=getattr(args, "yes", False)):
|
if not confirm_destructive_action(
|
||||||
|
"Repair", palace_path, assume_yes=getattr(args, "yes", False)
|
||||||
|
):
|
||||||
return
|
return
|
||||||
|
|
||||||
# Extract all drawers in batches
|
# Extract all drawers in batches
|
||||||
@@ -567,7 +569,9 @@ def main():
|
|||||||
action="store_true",
|
action="store_true",
|
||||||
help="Show what would be migrated without changing anything",
|
help="Show what would be migrated without changing anything",
|
||||||
)
|
)
|
||||||
p_migrate.add_argument("--yes", action="store_true", help="Skip confirmation for destructive changes")
|
p_migrate.add_argument(
|
||||||
|
"--yes", action="store_true", help="Skip confirmation for destructive changes"
|
||||||
|
)
|
||||||
|
|
||||||
sub.add_parser("status", help="Show what's been filed")
|
sub.add_parser("status", help="Show what's been filed")
|
||||||
|
|
||||||
|
|||||||
@@ -70,7 +70,9 @@ def sanitize_query(raw_query: str) -> dict:
|
|||||||
|
|
||||||
def _strip_wrapping_quotes(candidate: str) -> str:
|
def _strip_wrapping_quotes(candidate: str) -> str:
|
||||||
candidate = candidate.strip()
|
candidate = candidate.strip()
|
||||||
while len(candidate) >= 2 and candidate[:1] in QUOTE_CHARS and candidate[-1:] in QUOTE_CHARS:
|
while (
|
||||||
|
len(candidate) >= 2 and candidate[:1] in QUOTE_CHARS and candidate[-1:] in QUOTE_CHARS
|
||||||
|
):
|
||||||
candidate = candidate[1:-1].strip()
|
candidate = candidate[1:-1].strip()
|
||||||
if not candidate:
|
if not candidate:
|
||||||
return ""
|
return ""
|
||||||
@@ -86,7 +88,9 @@ def sanitize_query(raw_query: str) -> dict:
|
|||||||
return candidate
|
return candidate
|
||||||
|
|
||||||
nested_fragments = [
|
nested_fragments = [
|
||||||
_strip_wrapping_quotes(frag) for frag in _SENTENCE_SPLIT.split(candidate) if frag.strip()
|
_strip_wrapping_quotes(frag)
|
||||||
|
for frag in _SENTENCE_SPLIT.split(candidate)
|
||||||
|
if frag.strip()
|
||||||
]
|
]
|
||||||
for frag in reversed(nested_fragments):
|
for frag in reversed(nested_fragments):
|
||||||
if MIN_QUERY_LENGTH <= len(frag) <= MAX_QUERY_LENGTH:
|
if MIN_QUERY_LENGTH <= len(frag) <= MAX_QUERY_LENGTH:
|
||||||
|
|||||||
Reference in New Issue
Block a user