1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 02:40:56 +01:00

Allow multiple unnamed libraries (#2132)

This commit is contained in:
Stefan Agner 2021-08-07 13:16:34 +02:00 committed by GitHub
parent dfffaace26
commit 5bfac5ec09
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -653,7 +653,7 @@ class EsphomeCore:
"".format(library, type(library))
)
for other in self.libraries[:]:
if other.name != library.name:
if other.name != library.name or other.name is None or library.name is None:
continue
if other.repository is not None:
if library.repository is None or other.repository == library.repository: