Skip to content

Commit

Permalink
fix: temporary revert typing (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
chemelli74 authored Jun 20, 2024
1 parent b714d21 commit ee04a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/midea_ac_lan/midea_entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def device_info(self) -> DeviceInfo:
"model": f"{MIDEA_DEVICES[self._device.device_type]['name']} "
f"{self._device.model}"
f" ({self._device.subtype})",
"identifiers": {(DOMAIN, str(self._device.device_id))},
"identifiers": {(DOMAIN, self._device.device_id)}, # type: ignore[arg-type]
"name": self._device_name,
}

Expand Down

0 comments on commit ee04a9b

Please sign in to comment.