1
0
mirror of https://github.com/home-assistant/supervisor.git synced 2025-12-24 20:35:55 +00:00

Update ruamel.yaml to 0.17.17 (#3363)

This commit is contained in:
Franck Nijhof
2021-12-14 14:00:46 +01:00
committed by GitHub
parent 86bd16b2ba
commit 050851a9ac
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ gitpython==3.1.24
jinja2==3.0.3
pulsectl==21.10.5
pyudev==0.22.0
ruamel.yaml==0.15.100
ruamel.yaml==0.17.17
sentry-sdk==1.5.0
voluptuous==0.12.2
dbus-next==0.2.3

View File

@@ -7,7 +7,7 @@ from ruamel.yaml import YAML, YAMLError
from ..exceptions import YamlFileError
_YAML = YAML()
_YAML = YAML(typ="safe")
_YAML.allow_duplicate_keys = True
_LOGGER: logging.Logger = logging.getLogger(__name__)