mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Allow multiple unnamed libraries (#2132)
This commit is contained in:
parent
dfffaace26
commit
5bfac5ec09
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue