mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 15:08:10 +01:00
Fix validation infinite loop with empty platform block (#598)
* Fix validation infinite loop with empty platform block * Update util.py
This commit is contained in:
parent
734cc989de
commit
b5e75793e1
1 changed files with 2 additions and 0 deletions
|
@ -187,6 +187,8 @@ class OrderedDict(collections.OrderedDict):
|
|||
|
||||
def move_to_end(self, key, last=True):
|
||||
if IS_PY2:
|
||||
if len(self) == 1:
|
||||
return
|
||||
if last:
|
||||
# When moving to end, just pop and re-add
|
||||
val = self.pop(key)
|
||||
|
|
Loading…
Reference in a new issue