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

Commit

Permalink
Fix is_streaming property (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus committed Feb 20, 2022
1 parent 65517f3 commit 8ba4e60
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion custom_components/combined/camera.py
Expand Up @@ -46,7 +46,6 @@ def __init__(self, hass, name, entities, base_address):
"""Initialize Camera platform."""
super().__init__()
self.hass = hass
self.is_streaming = False
self._name = name
self._base_address = base_address
self._entities = entities
Expand All @@ -59,6 +58,10 @@ def camera_image(self):
self.fetch_new_image()
return self.feed

@property
def is_streaming(self):
return False

@property
def name(self):
"""Return the name of this camera."""
Expand Down

0 comments on commit 8ba4e60

Please sign in to comment.