From 4829eb8ae19a304a85a775b4496574b5e7e55d48 Mon Sep 17 00:00:00 2001 From: Mike Degatano Date: Thu, 20 Jun 2024 15:50:45 -0400 Subject: [PATCH] Await uninstall of addon in fixup (#5141) --- supervisor/resolution/fixups/addon_execute_remove.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/supervisor/resolution/fixups/addon_execute_remove.py b/supervisor/resolution/fixups/addon_execute_remove.py index 02b53d77e..f9e2633a8 100644 --- a/supervisor/resolution/fixups/addon_execute_remove.py +++ b/supervisor/resolution/fixups/addon_execute_remove.py @@ -26,7 +26,7 @@ class FixupAddonExecuteRemove(FixupBase): # Remove addon _LOGGER.info("Remove addon: %s", reference) try: - addon.uninstall() + await addon.uninstall() except AddonsError as err: _LOGGER.error("Could not remove %s due to %s", reference, err) raise ResolutionFixupError() from None