mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix DashboardEntries.all() call (#6783)
This commit is contained in:
parent
25ee24299a
commit
59b1e9c1b0
1 changed files with 1 additions and 1 deletions
|
@ -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."""
|
||||
|
|
Loading…
Reference in a new issue