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