mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
allow defaults with no include vars (#6613)
This commit is contained in:
parent
33e9881830
commit
5838af646b
1 changed files with 3 additions and 2 deletions
|
@ -321,8 +321,9 @@ class ESPHomeLoaderMixin:
|
|||
file, vars = node.value, None
|
||||
|
||||
result = _load_yaml_internal(self._rel_path(file))
|
||||
if vars:
|
||||
result = substitute_vars(result, vars)
|
||||
if not vars:
|
||||
vars = {}
|
||||
result = substitute_vars(result, vars)
|
||||
return result
|
||||
|
||||
@_add_data_ref
|
||||
|
|
Loading…
Reference in a new issue