mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix scripts circular dependency (#591)
Fixes https://github.com/esphome/issues/issues/370
This commit is contained in:
parent
f921997ee6
commit
420c8b49e2
1 changed files with 5 additions and 0 deletions
|
@ -16,8 +16,13 @@ CONFIG_SCHEMA = automation.validate_automation({
|
|||
|
||||
|
||||
def to_code(config):
|
||||
# Register all variables first, so that scripts can use other scripts
|
||||
triggers = []
|
||||
for conf in config:
|
||||
trigger = cg.new_Pvariable(conf[CONF_ID])
|
||||
triggers.append((trigger, conf))
|
||||
|
||||
for trigger, conf in triggers:
|
||||
yield automation.build_automation(trigger, [], conf)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue