From 8130d56b86e68077f1acddd64139f28d85579fa1 Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Fri, 12 Dec 2025 17:10:40 -0500 Subject: [PATCH] run check --- backend/endpoints/rom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/endpoints/rom.py b/backend/endpoints/rom.py index 2501a725e..6997d0b7b 100644 --- a/backend/endpoints/rom.py +++ b/backend/endpoints/rom.py @@ -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)