mirror of
https://github.com/esphome/esphome.git
synced 2024-11-09 16:57:47 +01:00
Bump voluptuous from 0.14.1 to 0.14.2 (#6181)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
This commit is contained in:
parent
f4eb525c97
commit
256d886d77
2 changed files with 2 additions and 2 deletions
|
@ -64,7 +64,7 @@ class _Schema(vol.Schema):
|
|||
|
||||
# Recursively compile schema
|
||||
_compiled_schema = {}
|
||||
for skey, svalue in vol.iteritems(schema):
|
||||
for skey, svalue in schema.items():
|
||||
new_key = self._compile(skey)
|
||||
new_value = self._compile(svalue)
|
||||
_compiled_schema[skey] = (new_key, new_value)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
async_timeout==4.0.3; python_version <= "3.10"
|
||||
cryptography==42.0.2
|
||||
voluptuous==0.14.1
|
||||
voluptuous==0.14.2
|
||||
PyYAML==6.0.1
|
||||
paho-mqtt==1.6.1
|
||||
colorama==0.4.6
|
||||
|
|
Loading…
Reference in a new issue