Fix DashboardEntries.all() call (#6783)

This commit is contained in:
J. Nick Koston 2024-05-20 01:52:24 -10:00 committed by GitHub
parent 25ee24299a
commit 59b1e9c1b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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