From 2a5d3e710c3b12e357d51cec629cf69bfebeb8d8 Mon Sep 17 00:00:00 2001 From: Shahzeb Imran Date: Mon, 18 Jul 2022 02:00:00 +1000 Subject: [PATCH] fix imports --- custom_components/jvcprojector/remote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/jvcprojector/remote.py b/custom_components/jvcprojector/remote.py index 3c5fcc3..ecd96f9 100644 --- a/custom_components/jvcprojector/remote.py +++ b/custom_components/jvcprojector/remote.py @@ -4,7 +4,7 @@ from homeassistant import util import asyncio from typing import Final -from jvc_projector import JVCCommunicationError as comm_error +from jvc_projector_remote import JVCCommunicationError as comm_error import datetime JVC_RETRIES: Final = "max_retries" @@ -52,7 +52,7 @@ def __init__( retries: int | None, ) -> None: """Initialize the Remote.""" - from jvc_projector import JVCProjector + from jvc_projector_remote import JVCProjector self._name = name or DEVICE_DEFAULT_NAME self._host = host