fix: Correct import formatting for CreditService in VLCPlayerService
This commit is contained in:
@@ -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(
|
||||||
|
|||||||
Reference in New Issue
Block a user