mirror of
https://github.com/esphome/esphome.git
synced 2025-09-04 12:22:20 +01:00
Allow multiple unnamed libraries (#2132)
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user