From c49da9bf84c8f7377514beaeeeca8168cee611a8 Mon Sep 17 00:00:00 2001 From: 9qeklajc <9qeklajc> Date: Tue, 4 Nov 2025 23:50:55 +0100 Subject: [PATCH] ignore error --- routstr/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routstr/proxy.py b/routstr/proxy.py index 43891818..47b98c13 100644 --- a/routstr/proxy.py +++ b/routstr/proxy.py @@ -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()}