Skip to content

Commit d14691e

Browse files
Bump the back-dev-deps group with 2 updates (#274)
Bumps the back-dev-deps group with 2 updates: [black](https://github.com/psf/black) and [coverage](https://github.com/coveragepy/coveragepy). Updates `black` from 25.12.0 to 26.1.0 - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@25.12.0...26.1.0) Updates `coverage` from 7.13.1 to 7.13.2 - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](coveragepy/coveragepy@7.13.1...7.13.2) --- updated-dependencies: - dependency-name: black dependency-version: 26.1.0 dependency-type: direct:development update-type: version-update:semver-major dependency-group: back-dev-deps - dependency-name: coverage dependency-version: 7.13.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: back-dev-deps ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Philipp Metzner <beth.aleph@yahoo.de>
1 parent e81f95e commit d14691e

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

financeager/pocket/sqlite.py

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,20 +52,17 @@ def _create_tables(self):
5252
"""Create tables if they don't exist."""
5353
cursor = self._conn.cursor()
5454

55-
cursor.execute(
56-
"""
55+
cursor.execute("""
5756
CREATE TABLE IF NOT EXISTS standard (
5857
eid INTEGER PRIMARY KEY AUTOINCREMENT,
5958
name TEXT NOT NULL,
6059
date TEXT NOT NULL,
6160
category TEXT,
6261
value REAL NOT NULL
6362
)
64-
"""
65-
)
63+
""")
6664

67-
cursor.execute(
68-
"""
65+
cursor.execute("""
6966
CREATE TABLE IF NOT EXISTS recurrent (
7067
eid INTEGER PRIMARY KEY AUTOINCREMENT,
7168
name TEXT NOT NULL,
@@ -75,8 +72,7 @@ def _create_tables(self):
7572
category TEXT,
7673
value REAL NOT NULL
7774
)
78-
"""
79-
)
75+
""")
8076

8177
self._conn.commit()
8278

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ classifiers = [
4646
]
4747
[project.optional-dependencies]
4848
develop = [
49-
"black==25.12.0",
50-
"coverage==7.13.1",
49+
"black==26.1.0",
50+
"coverage==7.13.3",
5151
'flake8==7.3.0',
5252
"flake8-pyproject==1.2.4",
5353
"gitlint-core==0.19.1",

0 commit comments

Comments
 (0)