fix: Correct import formatting for CreditService in VLCPlayerService
Some checks failed
Backend CI / lint (push) Failing after 9s
Backend CI / test (push) Failing after 1m28s

This commit is contained in:
JSC
2025-09-27 03:34:19 +02:00
parent 4b8496d025
commit 7b59a8216a

View File

@@ -336,10 +336,10 @@ class VLCPlayerService:
""" """
from fastapi import HTTPException, status # noqa: PLC0415, I001 from fastapi import HTTPException, status # noqa: PLC0415, I001
from app.services.credit import ( from app.services.credit import ( # noqa: PLC0415
CreditService, CreditService,
InsufficientCreditsError, InsufficientCreditsError,
) # noqa: PLC0415 )
if not self.db_session_factory: if not self.db_session_factory:
raise HTTPException( raise HTTPException(