Skip to content

Commit

Permalink
remote: fix typo in handling of type dp.
Browse files Browse the repository at this point in the history
Issue #1719
  • Loading branch information
make-all committed Mar 7, 2024
1 parent 5c6f27d commit dabf98e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/tuya_local/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def _encode_send_code(self, code, delay):
if self._delay_dp:
dps = dps | self._delay_dp.get_values_to_set(self._device, delay)
if self._type_dp:
dps = dps | self._type_dp.get_values_to_seet(self._device, 0)
dps = dps | self._type_dp.get_values_to_set(self._device, 0)
else:
dps = dps | self._send_dp.get_values_to_set(
self._device,
Expand Down

0 comments on commit dabf98e

Please sign in to comment.