Skip to content

Commit 7a59917

Browse files
committed
chore: update deps
1 parent 54cb706 commit 7a59917

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ classifiers = [
2727

2828
dependencies = [
2929
"pyyaml>=6.0.1",
30+
"voluptuous>0.15",
3031
]
3132
urls."Bug Tracker" = "https://github.com/home-assistant-libs/annotatedyaml/issues"
3233
urls.Changelog = "https://github.com/home-assistant-libs/annotatedyaml/blob/main/CHANGELOG.md"

src/annotatedyaml/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Constants."""
22

3-
SECRET_YAML = "secrets.yaml"
3+
SECRET_YAML = "secrets.yaml" # noqa: S105

src/annotatedyaml/loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _parse_yaml(
226226
secrets: Secrets | None = None,
227227
) -> JSON_TYPE:
228228
"""Load a YAML file."""
229-
return yaml.load(content, Loader=lambda stream: loader(stream, secrets)) # type: ignore[arg-type]
229+
return yaml.load(content, Loader=lambda stream: loader(stream, secrets)) # type: ignore[arg-type] # noqa: S506
230230

231231

232232
@overload

uv.lock

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

0 commit comments

Comments
 (0)