1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 19:02:18 +01:00
* wip

* first working

* feat complete

* add CODEOWNERS

* renamed to spi, reset optional

* add test

* fix CODEOWNERS
This commit is contained in:
Guillermo Ruffino
2020-10-26 20:41:57 -03:00
committed by GitHub
parent adb51cf733
commit 59cdc32970
7 changed files with 1253 additions and 0 deletions

View File

@@ -48,6 +48,10 @@ for path in components_dir.iterdir():
name = path.name
comp = get_component(name)
if comp is None:
print(f'Cannot find component {name}. Make sure current path is pip installed ESPHome')
sys.exit(1)
codeowners[f'esphome/components/{name}/*'].extend(comp.codeowners)
for platform_path in path.iterdir():