Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bezmi authored Jul 17, 2022
1 parent 731b5d0 commit 2a5d3e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/jvcprojector/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 2a5d3e7

Please sign in to comment.