style: ruff check --fix

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
MSL
2026-04-10 08:31:56 -07:00
parent 71e8f2d054
commit e641b80448
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -126,7 +126,7 @@ def show_stats(palace_path=None):
print(f"\n Sources with {MIN_DRAWERS_TO_CHECK}+ drawers: {len(groups)}")
print(f" Total drawers in those sources: {total_drawers:,}")
print(f"\n Top 15 by drawer count:")
print("\n Top 15 by drawer count:")
sorted_groups = sorted(groups.items(), key=lambda x: len(x[1]), reverse=True)
for src, ids in sorted_groups[:15]:
print(f" {len(ids):4d} {src[:65]}")
@@ -192,7 +192,7 @@ def dedup_palace(
print(f" Palace after: {col.count():,} drawers")
if dry_run:
print(f"\n [DRY RUN] No changes written. Re-run without --dry-run to apply.")
print("\n [DRY RUN] No changes written. Re-run without --dry-run to apply.")
print(f"{'=' * 55}\n")
+1 -1
View File
@@ -280,7 +280,7 @@ def rebuild_index(palace_path=None):
print(f" Re-filed {filed}/{len(all_ids)} drawers...")
print(f"\n Repair complete. {filed} drawers rebuilt.")
print(f" HNSW index is now clean with cosine distance metric.")
print(" HNSW index is now clean with cosine distance metric.")
print(f"\n{'=' * 55}\n")