run check

This commit is contained in:
Georges-Antoine Assi
2025-12-12 17:10:40 -05:00
parent 19ef2d4d5f
commit 8130d56b86

View File

@@ -511,7 +511,7 @@ def get_rom_by_metadata_provider(
if not rom:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=f"ROM not found with given metadata IDs",
detail="ROM not found with given metadata IDs",
)
return DetailedRomSchema.from_orm_with_request(rom, request)
@@ -542,7 +542,7 @@ def get_rom_by_hash(
if not rom:
raise HTTPException(
status_code=status.HTTP_404_NOT_FOUND,
detail=f"No ROM or file found with given hash values",
detail="No ROM or file found with given hash values",
)
return DetailedRomSchema.from_orm_with_request(rom, request)