Fix overridden state methods - camera (#60352)

This commit is contained in:
Marc Mueller 2021-11-25 18:47:57 +01:00 committed by GitHub
parent f292691b7b
commit b724672dd8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 21 deletions

View file

@ -18,11 +18,6 @@ class HomeKitCamera(AccessoryEntity, Camera):
"""Define the homekit characteristics the entity is tracking."""
return []
@property
def state(self):
"""Return the current state of the camera."""
return "idle"
async def async_camera_image(
self, width: int | None = None, height: int | None = None
) -> bytes | None: