Skip to content

Commit 2a5d3e7

Browse files
authored
fix imports
1 parent 731b5d0 commit 2a5d3e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom_components/jvcprojector/remote.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from homeassistant import util
55
import asyncio
66
from typing import Final
7-
from jvc_projector import JVCCommunicationError as comm_error
7+
from jvc_projector_remote import JVCCommunicationError as comm_error
88
import datetime
99

1010
JVC_RETRIES: Final = "max_retries"
@@ -52,7 +52,7 @@ def __init__(
5252
retries: int | None,
5353
) -> None:
5454
"""Initialize the Remote."""
55-
from jvc_projector import JVCProjector
55+
from jvc_projector_remote import JVCProjector
5656

5757
self._name = name or DEVICE_DEFAULT_NAME
5858
self._host = host

0 commit comments

Comments
 (0)