Skip to content

Commit

Permalink
fix encode
Browse files Browse the repository at this point in the history
  • Loading branch information
iloveicedgreentea committed Jun 19, 2023
1 parent 98ddeae commit 3554a35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jvc_projector/jvc_projector.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def emulate_remote(self, remote_code: str) -> tuple[str, bool]:
)

return self._send_command(
cmd + remote_code,
cmd + remote_code.encode(),
ack=ACKs.menu_ack,
command_type=Header.operation.value,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="jvc_projector_remote_improved2",
version="3.6.3",
version="3.6.4",
author="iloveicedgreentea",
description="A package to control JVC projectors over IP",
long_description=long_description,
Expand Down

0 comments on commit 3554a35

Please sign in to comment.