Make services yield (#4187)

* Make services yield

* Disable pylint abstract-method check

* add input_select

* add input_slider

* change to async vers.

* fix lint

* yield on add_entities as other components does
This commit is contained in:
Paulus Schoutsen 2016-11-03 18:32:14 -07:00 committed by GitHub
parent 15dde7925a
commit ee5f228309
75 changed files with 108 additions and 131 deletions

View file

@ -87,7 +87,7 @@ class FFmpegCamera(Camera):
response.write(data)
finally:
self.hass.loop.create_task(stream.close())
self.hass.loop.create_task(response.write_eof())
yield from response.write_eof()
@property
def name(self):