fix(fc3a): ruff I001 import-block fixes + use sqlalchemy.case (not func.case)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-20 14:22:53 -04:00
parent ecca91753f
commit bf828c7b9d
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -3,11 +3,11 @@ from sqlalchemy import select
from backend.app.models import Artist
from backend.app.services.source_service import (
KNOWN_PLATFORMS,
ArtistNotFoundError,
DuplicateSourceError,
EmptyUrlError,
InvalidConfigError,
KNOWN_PLATFORMS,
SourceService,
UnknownPlatformError,
)