Fix DashboardEntries.all() call (#6783)

This commit is contained in:
J. Nick Koston
2024-05-21 11:07:20 +12:00
committed by Jesse Hills
parent 2eebee1de7
commit efde677ca9
+1 -1
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."""