Skip to content
This repository has been archived by the owner on Mar 8, 2022. It is now read-only.

fix HA camera warning #202

Merged
merged 1 commit into from
Oct 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/deebot/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def device_info(self) -> Optional[Dict[str, Any]]:
return get_device_info(self._vacuum_bot)

async def async_camera_image(
self, width: Optional[int] = None, _: Optional[int] = None
self, width: Optional[int] = None, height: Optional[int] = None
) -> Optional[bytes]:
"""Return a still image response from the camera.

Expand Down