File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
stattest/persistence/db_store Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -32,19 +32,19 @@ package-mode = false
3232[tool .poetry .group .dev .dependencies ]
3333markdown = " 3.7"
3434mkdocs = " 1.6.1"
35- mkdocs-material = " 9.5.44 "
35+ mkdocs-material = " 9.6.9 "
3636mdx-truly-sane-lists = " 1.3"
37- pymdown-extensions = " 10.12 "
38- jinja2 = " 3.1.4 "
37+ pymdown-extensions = " 10.14.3 "
38+ jinja2 = " 3.1.6 "
3939mike = " 2.1.3"
40- isort = " 5.13.2 "
40+ isort = " 6.0.1 "
4141coveralls = " 4.0.1"
42- pytest = " 8.3.3 "
42+ pytest = " 8.3.5 "
4343pytest-cov = " 6.0.0"
4444pytest-random-order = " 1.1.1"
45- ruff = " 0.7.4 "
45+ ruff = " 0.11.2 "
4646pytest-mock = " 3.14.0"
47- pre-commit = " 4.0.1 "
47+ pre-commit = " 4.2.0 "
4848
4949[tool .isort ]
5050line_length = 100
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ def init_db(db_url: str) -> Engine:
6767 engine = create_engine (db_url , future = True , ** kwargs )
6868 except NoSuchModuleError :
6969 raise OperationalException (
70- f"Given value for db_url: '{ db_url } ' "
71- f"is no valid database URL! (See { _SQL_DOCS_URL } )"
70+ f"Given value for db_url: '{ db_url } ' is no valid database URL! (See { _SQL_DOCS_URL } )"
7271 )
7372 return engine
You can’t perform that action at this time.
0 commit comments