We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 731b5d0 commit 2a5d3e7Copy full SHA for 2a5d3e7
custom_components/jvcprojector/remote.py
@@ -4,7 +4,7 @@
4
from homeassistant import util
5
import asyncio
6
from typing import Final
7
-from jvc_projector import JVCCommunicationError as comm_error
+from jvc_projector_remote import JVCCommunicationError as comm_error
8
import datetime
9
10
JVC_RETRIES: Final = "max_retries"
@@ -52,7 +52,7 @@ def __init__(
52
retries: int | None,
53
) -> None:
54
"""Initialize the Remote."""
55
- from jvc_projector import JVCProjector
+ from jvc_projector_remote import JVCProjector
56
57
self._name = name or DEVICE_DEFAULT_NAME
58
self._host = host
0 commit comments