Update types packages (#100850)

This commit is contained in:
Marc Mueller 2023-09-25 18:53:22 +02:00 committed by GitHub
parent 30c7e7fbdf
commit 11e8bf0b9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 15 deletions

View file

@ -203,7 +203,7 @@ def _parse_yaml(
# If configuration file is empty YAML returns None
# We convert that to an empty dict
return (
yaml.load(content, Loader=lambda stream: loader(stream, secrets))
yaml.load(content, Loader=lambda stream: loader(stream, secrets)) # type: ignore[arg-type]
or NodeDictClass()
)