Fix linting issues: remove unused imports and variables

This commit is contained in:
Hanzo Dev
2025-11-14 06:48:35 -08:00
parent f89b3a2b17
commit d3a89857c7
2 changed files with 2 additions and 2 deletions
+1 -2
View File
@@ -6,12 +6,11 @@ Uses Claude to intelligently detect and redact sensitive data
import json
import os
import re
from pathlib import Path
from datetime import datetime
import click
from rich.console import Console
from rich.progress import track, Progress, SpinnerColumn, TextColumn
from rich.progress import Progress, SpinnerColumn, TextColumn
from rich.table import Table
from rich.panel import Panel
import anthropic
+1
View File
@@ -43,6 +43,7 @@ class TestSensitiveKeywordDetection:
entry = {"content": "function calculateTotal(items) { return sum; }"}
# This might have 'total' but context is safe
# The AI layer will determine it's safe
assert not any(kw in entry["content"].lower() for kw in SENSITIVE_KEYWORDS if kw not in ["function", "return"])
class TestClaudeSanitization: