Skip to content

Commit

Permalink
Bump voluptuous from 0.14.1 to 0.14.2 (esphome#6181)
Browse files Browse the repository at this point in the history
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jesse Hills <[email protected]>
  • Loading branch information
dependabot[bot] and jesserockz authored Feb 21, 2024
1 parent f4eb525 commit 256d886
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esphome/voluptuous_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def _compile_mapping(self, schema, invalid_msg=None):

# 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)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 256d886

Please sign in to comment.