ignore error

This commit is contained in:
9qeklajc
2025-11-04 23:50:55 +01:00
parent c2b97f8e3b
commit c49da9bf84
+1 -1
View File
@@ -101,7 +101,7 @@ async def refresh_model_maps() -> None:
}
disabled_result = await session.exec(
select(ModelRow.id).where(ModelRow.enabled == False)
select(ModelRow.id).where(ModelRow.enabled == False) # noqa: E712
)
disabled_model_ids = {row for row in disabled_result.all()}