From b4118f61622a35461af2c220d8a948ecb795e65b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Mar 2026 09:37:40 +0000 Subject: [PATCH] style: apply ruff auto-fix - Auto-formatted code with ruff format - Applied ruff linting fixes with --fix Co-authored-by: github-actions[bot] --- app/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/database.py b/app/database.py index 48aaebb6..f563931a 100644 --- a/app/database.py +++ b/app/database.py @@ -271,7 +271,7 @@ def _ensure_indexes(engine: Any, inspector: Any) -> None: if table not in columns_by_table: columns_by_table[table] = {col["name"] for col in inspector.get_columns(table)} if column in columns_by_table[table]: - # SECURITY: Quoted identifiers to prevent SQL injection during index creation + # SECURITY: Quoted identifiers to prevent SQL injection during index creation quoted_idx = preparer.quote(idx_name) quoted_table = preparer.quote(table) quoted_col = preparer.quote(column)