1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Convert stream source to method (#23905)

* Convert stream source to method

* Use async with
This commit is contained in:
Paulus Schoutsen
2019-05-23 09:45:30 -07:00
committed by GitHub
parent 8d22479d24
commit 1de0a0bbb9
10 changed files with 50 additions and 39 deletions

View File

@@ -47,8 +47,7 @@ class FFmpegCamera(Camera):
"""Return supported features."""
return SUPPORT_STREAM
@property
def stream_source(self):
async def stream_source(self):
"""Return the stream source."""
return self._input.split(' ')[-1]