From 69a4bcb5af30a8fc91d09fa53c48aa4ff8770702 Mon Sep 17 00:00:00 2001 From: BottlecapDave Date: Wed, 29 Mar 2023 06:00:32 +0100 Subject: [PATCH] fix: Added missing requirement for repairs --- custom_components/octopus_energy/__init__.py | 2 ++ requirements.test.txt | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/custom_components/octopus_energy/__init__.py b/custom_components/octopus_energy/__init__.py index 71d970ce..0159ed42 100644 --- a/custom_components/octopus_energy/__init__.py +++ b/custom_components/octopus_energy/__init__.py @@ -8,6 +8,8 @@ DataUpdateCoordinator ) +from homeassistant.helpers import issue_registry as ir + from .const import ( DOMAIN, diff --git a/requirements.test.txt b/requirements.test.txt index 79449343..f4c12918 100644 --- a/requirements.test.txt +++ b/requirements.test.txt @@ -2,4 +2,4 @@ pytest pytest-socket pytest-asyncio mock -homeassistant>=2021.12.01 \ No newline at end of file +homeassistant \ No newline at end of file