1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-01 10:52:19 +01:00

Fix DashboardEntries.all() call (#6783)

This commit is contained in:
J. Nick Koston
2024-05-20 01:52:24 -10:00
committed by Jesse Hills
parent 2eebee1de7
commit efde677ca9

View File

@@ -103,7 +103,7 @@ class DashboardEntries:
def all(self) -> list[DashboardEntry]:
"""Return all entries."""
return asyncio.run_coroutine_threadsafe(self._async_all, self._loop).result()
return asyncio.run_coroutine_threadsafe(self._async_all(), self._loop).result()
def async_all(self) -> list[DashboardEntry]:
"""Return all entries."""