From 38b5c71bba96d1e86fbb5cd5dc0c0e8859d14e45 Mon Sep 17 00:00:00 2001 From: Vargash Date: Mon, 24 Nov 2025 15:16:57 +0100 Subject: [PATCH] Fix formatting --- backend/endpoints/gamelist.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/backend/endpoints/gamelist.py b/backend/endpoints/gamelist.py index 8493c27fe..b30a3bc45 100644 --- a/backend/endpoints/gamelist.py +++ b/backend/endpoints/gamelist.py @@ -23,7 +23,9 @@ async def export_gamelist( platform_ids: Annotated[ List[int], Query(description="List of platform IDs to export") ], - local_path: Annotated[bool, Query(description="Use local paths instead of URLs")] = False, + local_path: Annotated[ + bool, Query(description="Use local paths instead of URLs") + ] = False, ) -> Response: """Export platforms/ROMs to gamelist.xml format and write to platform directories""" if not platform_ids: @@ -38,7 +40,9 @@ async def export_gamelist( # Export each platform to its respective directory for platform_id in platform_ids: - success = await exporter.export_platform_to_file(platform_id, request if not local_path else None) + success = await exporter.export_platform_to_file( + platform_id, request if not local_path else None + ) if success: files_written.append(f"gamelist_{platform_id}.xml") else: