fix(lint): resolve all ruff lint errors

Add ruff config to exclude alembic E402, SQLAlchemy F821, and pre-existing
E501 line-length issues. Auto-fix 69 unused imports and 2 f-strings without
placeholders. Manually fix 8 unused variables. Apply ruff format to 127 files.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Jason Staack
2026-03-14 22:17:50 -05:00
parent 2ad0367c91
commit 06a41ca9bf
133 changed files with 2927 additions and 1890 deletions

View File

@@ -1,8 +1,7 @@
"""Tests for config change NATS subscriber."""
import pytest
from datetime import datetime, timedelta, timezone
from unittest.mock import AsyncMock, patch, MagicMock
from unittest.mock import AsyncMock, patch
from uuid import uuid4
from app.services.config_change_subscriber import handle_config_changed
@@ -18,13 +17,16 @@ async def test_triggers_backup_on_config_change():
"new_timestamp": "2026-03-07 12:00:00",
}
with patch(
"app.services.config_change_subscriber.backup_service.run_backup",
new_callable=AsyncMock,
) as mock_backup, patch(
"app.services.config_change_subscriber._last_backup_within_dedup_window",
new_callable=AsyncMock,
return_value=False,
with (
patch(
"app.services.config_change_subscriber.backup_service.run_backup",
new_callable=AsyncMock,
) as mock_backup,
patch(
"app.services.config_change_subscriber._last_backup_within_dedup_window",
new_callable=AsyncMock,
return_value=False,
),
):
await handle_config_changed(event)
@@ -42,13 +44,16 @@ async def test_skips_backup_within_dedup_window():
"new_timestamp": "2026-03-07 12:00:00",
}
with patch(
"app.services.config_change_subscriber.backup_service.run_backup",
new_callable=AsyncMock,
) as mock_backup, patch(
"app.services.config_change_subscriber._last_backup_within_dedup_window",
new_callable=AsyncMock,
return_value=True,
with (
patch(
"app.services.config_change_subscriber.backup_service.run_backup",
new_callable=AsyncMock,
) as mock_backup,
patch(
"app.services.config_change_subscriber._last_backup_within_dedup_window",
new_callable=AsyncMock,
return_value=True,
),
):
await handle_config_changed(event)