diff --git a/supervisor/store/git.py b/supervisor/store/git.py index d16c8dd21..ca184678a 100644 --- a/supervisor/store/git.py +++ b/supervisor/store/git.py @@ -53,7 +53,7 @@ class GitRepo(CoreSysAttributes): git.GitCommandError, ) as err: _LOGGER.error("Can't load %s repo: %s.", self.path, err) - self._remove() + await self._remove() return False return True @@ -86,7 +86,7 @@ class GitRepo(CoreSysAttributes): git.GitCommandError, ) as err: _LOGGER.error("Can't clone %s repository: %s.", self.url, err) - self._remove() + await self._remove() return False return True