1
0
mirror of https://github.com/home-assistant/core.git synced 2026-02-15 07:36:16 +00:00

Fix hassfest brand domain validation (#155701)

This commit is contained in:
Paulus Schoutsen
2025-11-03 01:58:34 -05:00
committed by GitHub
parent 28675eee33
commit da0fb37a20

View File

@@ -72,7 +72,7 @@ class Brand:
@property
def domain(self) -> str:
"""Integration domain."""
return self.path.stem
return self.brand["domain"]
@property
def name(self) -> str | None: