run trunk fmt

This commit is contained in:
Georges-Antoine Assi
2025-11-21 19:20:38 -05:00
parent 7b8e6f1657
commit 6cbf9bcbc2
2 changed files with 2 additions and 2 deletions

View File

@@ -15,10 +15,10 @@ from endpoints.responses import TaskType
from endpoints.responses.platform import PlatformSchema
from endpoints.responses.rom import SimpleRomSchema
from exceptions.fs_exceptions import (
FOLDER_STRUCT_MSG,
FirmwareNotFoundException,
FolderStructureNotMatchException,
RomsNotFoundException,
FOLDER_STRUCT_MSG
)
from exceptions.socket_exceptions import ScanStoppedException
from handler.database import db_firmware_handler, db_platform_handler, db_rom_handler

View File

@@ -1,7 +1,7 @@
from logger.formatter import BLUE
from logger.formatter import highlight as hl
FOLDER_STRUCT_MSG = "Check RomM folder structure here: https://docs.romm.app/latest/Getting-Started/Folder-Structure/ for more details"
FOLDER_STRUCT_MSG = "Check RomM folder structure here: https://docs.romm.app/latest/Getting-Started/Folder-Structure/ for more details"
class FolderStructureNotMatchException(Exception):