mirror of
https://github.com/home-assistant/supervisor.git
synced 2025-07-27 11:06:32 +00:00
Missing an await in addon data (#4487)
This commit is contained in:
parent
222c3fd485
commit
3018b851c8
@ -133,7 +133,7 @@ class StoreData(CoreSysAttributes):
|
|||||||
|
|
||||||
for repo in await self.sys_run_in_executor(_read_git_repositories):
|
for repo in await self.sys_run_in_executor(_read_git_repositories):
|
||||||
self.repositories[repo.slug] = repo.config
|
self.repositories[repo.slug] = repo.config
|
||||||
self._read_addons_folder(repo.path, repo.slug)
|
await self._read_addons_folder(repo.path, repo.slug)
|
||||||
|
|
||||||
async def _find_addons(self, path: Path, repository: dict) -> list[Path] | None:
|
async def _find_addons(self, path: Path, repository: dict) -> list[Path] | None:
|
||||||
"""Find add-ons in the path."""
|
"""Find add-ons in the path."""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user