From e75b11e4e88a922f7685ade40acf56e35327247c Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 29 Oct 2020 08:51:03 -1000 Subject: [PATCH] Remove double write on startup recurring_tasks_installed and startup_tasks were both writing the data. --- custom_components/hacs/hacsbase/hacs.py | 1 - 1 file changed, 1 deletion(-) diff --git a/custom_components/hacs/hacsbase/hacs.py b/custom_components/hacs/hacsbase/hacs.py index 728d51c81b2..17008dd6f3f 100644 --- a/custom_components/hacs/hacsbase/hacs.py +++ b/custom_components/hacs/hacsbase/hacs.py @@ -167,7 +167,6 @@ async def startup_tasks(self, _event=None): self.status.background_task = False self.hass.bus.async_fire("hacs/status", {}) await self.async_set_stage(HacsStage.RUNNING) - await self.data.async_write() async def handle_critical_repositories_startup(self): """Handled critical repositories during startup."""