From 2cfbea29a9211abfc13b74dea0a841fe5a2546b9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 16 Mar 2026 09:12:15 +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/utils/db_migrate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils/db_migrate.py b/app/utils/db_migrate.py index c9558f29..78f87fca 100644 --- a/app/utils/db_migrate.py +++ b/app/utils/db_migrate.py @@ -85,7 +85,7 @@ def preview_migration(source_url: str) -> dict[str, Any]: total = 0 with src_engine.connect() as conn: for table_name in tables: - if not re.match(r'^[a-zA-Z0-9_]+$', table_name): + if not re.match(r"^[a-zA-Z0-9_]+$", table_name): logger.warning(f"Skipping table with invalid name format: {table_name}") continue # table_name is safe — sourced from inspect().get_table_names(), not user input