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

@@ -23,12 +23,15 @@ async def test_cleanup_deletes_expired_snapshots():
mock_ctx.__aenter__ = AsyncMock(return_value=mock_session)
mock_ctx.__aexit__ = AsyncMock(return_value=False)
with patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
), patch(
"app.services.retention_service.settings",
) as mock_settings:
with (
patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
),
patch(
"app.services.retention_service.settings",
) as mock_settings,
):
mock_settings.CONFIG_RETENTION_DAYS = 90
count = await cleanup_expired_snapshots()
@@ -60,12 +63,15 @@ async def test_cleanup_keeps_snapshots_within_retention_window():
mock_ctx.__aenter__ = AsyncMock(return_value=mock_session)
mock_ctx.__aexit__ = AsyncMock(return_value=False)
with patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
), patch(
"app.services.retention_service.settings",
) as mock_settings:
with (
patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
),
patch(
"app.services.retention_service.settings",
) as mock_settings,
):
mock_settings.CONFIG_RETENTION_DAYS = 90
count = await cleanup_expired_snapshots()
@@ -87,12 +93,15 @@ async def test_cleanup_returns_deleted_count():
mock_ctx.__aenter__ = AsyncMock(return_value=mock_session)
mock_ctx.__aexit__ = AsyncMock(return_value=False)
with patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
), patch(
"app.services.retention_service.settings",
) as mock_settings:
with (
patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
),
patch(
"app.services.retention_service.settings",
) as mock_settings,
):
mock_settings.CONFIG_RETENTION_DAYS = 30
count = await cleanup_expired_snapshots()
@@ -114,12 +123,15 @@ async def test_cleanup_handles_empty_table():
mock_ctx.__aenter__ = AsyncMock(return_value=mock_session)
mock_ctx.__aexit__ = AsyncMock(return_value=False)
with patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
), patch(
"app.services.retention_service.settings",
) as mock_settings:
with (
patch(
"app.services.retention_service.AdminAsyncSessionLocal",
return_value=mock_ctx,
),
patch(
"app.services.retention_service.settings",
) as mock_settings,
):
mock_settings.CONFIG_RETENTION_DAYS = 90
count = await cleanup_expired_snapshots()