fix: resolve linting issues in token efficiency implementation
Some checks failed
CI / test (pull_request) Has been cancelled

- Fix ambiguous variable names (l → layer)
- Remove unused imports and variables
- Organize import statements

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
agentson
2026-02-04 18:35:55 +09:00
parent 4f61d5af8e
commit 61f5aaf4a3
9 changed files with 12 additions and 19 deletions

View File

@@ -176,9 +176,6 @@ class ContextSummarizer:
Returns:
Dictionary with recent (detailed) and historical (summary) data
"""
now = datetime.now(UTC)
cutoff = now - timedelta(days=window_days)
result: dict[str, Any] = {
"window_days": window_days,
"recent_data": {},