chore: fix ruff warnings (RUF059, F401)

This commit is contained in:
Andy Lee
2025-09-17 16:18:48 -07:00
parent b5ce34ad82
commit bc4d02c2d3
2 changed files with 1 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ class ChromeHistoryReader(BaseReader):
if count >= max_count and max_count > 0:
break
last_visit, url, title, visit_count, typed_count, hidden = row
last_visit, url, title, visit_count, typed_count, _hidden = row
# Create document content with metadata embedded in text
doc_content = f"""

View File

@@ -1,6 +1,5 @@
import argparse
import asyncio
import sys
from pathlib import Path
from typing import Any, Optional, Union