1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-06 02:40:56 +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
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

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."""