Skip to content

Commit 077d632

Browse files
[pre-commit.ci] pre-commit autoupdate (#57)
<!--pre-commit.ci start--> updates: - [github.com/astral-sh/ruff-pre-commit: v0.8.6 → v0.9.1](astral-sh/ruff-pre-commit@v0.8.6...v0.9.1) <!--pre-commit.ci end--> --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 5bb7632 commit 077d632

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ repos:
2929
hooks:
3030
- id: unkey
3131
- repo: https://github.com/astral-sh/ruff-pre-commit
32-
rev: v0.8.6
32+
rev: v0.9.1
3333
hooks:
3434
- id: ruff
3535
args: [--fix]

sqlite_export_for_ynab/_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ def insert_entry(
403403
keys, values = ekeys + ("budget_id",), evalues + (budget_id,)
404404

405405
cur.execute(
406-
f'INSERT OR REPLACE INTO {table} ({", ".join(keys)}) VALUES ({", ".join("?" * len(values))})',
406+
f"INSERT OR REPLACE INTO {table} ({', '.join(keys)}) VALUES ({', '.join('?' * len(values))})",
407407
values,
408408
)
409409

0 commit comments

Comments
 (0)