ci: run pre-commit in CI

This commit is contained in:
Andrey Avtomonov 2026-05-13 19:43:58 +02:00
parent be77c3c0bb
commit b63585f252
24 changed files with 171 additions and 127 deletions

View file

@ -130,7 +130,9 @@ def _analyze_one(
)
def _analyze_payload(payload: tuple[str, str, str]) -> tuple[str, AnalyzeSqlBatchResult]:
def _analyze_payload(
payload: tuple[str, str, str],
) -> tuple[str, AnalyzeSqlBatchResult]:
item_id, sql, dialect = payload
return _analyze_one(item_id, sql, dialect)