Skip to content

Commit 93e4354

Browse files
dependabot[bot]sdn4z
authored andcommitted
chore: bump tomlkit from 0.14.0 to 0.15.0
Bumps [tomlkit](https://github.com/python-poetry/tomlkit) from 0.14.0 to 0.15.0. - [Release notes](https://github.com/python-poetry/tomlkit/releases) - [Changelog](https://github.com/python-poetry/tomlkit/blob/master/CHANGELOG.md) - [Commits](python-poetry/tomlkit@0.14.0...0.15.0) --- updated-dependencies: - dependency-name: tomlkit dependency-version: 0.15.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 28d4779 commit 93e4354

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies = [
1414
"requests<3.0.0,>=2.32.4",
1515
"rapidfuzz<4.0.0,>=2.13.7",
1616
"pyparsing<4.0.0,>=3.2.3",
17-
"tomlkit>=0.11.6,<0.15.0",
17+
"tomlkit>=0.11.6,<0.16.0",
1818
"pydantic>=2.11.7,<3.0.0",
1919
"pyyaml>=6.0.2",
2020
]

src/twyn/config/config_handler.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -225,9 +225,9 @@ def _write_config(self, toml: TOMLDocument, config: ReadTwynConfiguration) -> No
225225

226226
if "tool" not in toml:
227227
toml.add("tool", table())
228-
if "twyn" not in toml["tool"]: # type: ignore[operator]
229-
toml["tool"]["twyn"] = {} # type: ignore[index]
230-
toml["tool"]["twyn"] = twyn_toml_data # type: ignore[index]
228+
if "twyn" not in toml["tool"]:
229+
toml["tool"]["twyn"] = {}
230+
toml["tool"]["twyn"] = twyn_toml_data
231231
self._write_toml(toml)
232232

233233
def _write_toml(self, toml: TOMLDocument) -> None:

uv.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)