1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00

Don't pass in loop (#23984)

* Don't pass in loop

* Revert some changes

* Lint + Axis revert

* reinstate loop

* Fix a test

* Set loop

* Update camera.py

* Lint
This commit is contained in:
Paulus Schoutsen
2019-05-22 21:09:59 -07:00
committed by GitHub
parent 9e96397e6a
commit f995ab9d54
117 changed files with 179 additions and 187 deletions

View File

@@ -112,7 +112,7 @@ class MjpegCamera(Camera):
verify_ssl=self._verify_ssl
)
try:
with async_timeout.timeout(10, loop=self.hass.loop):
with async_timeout.timeout(10):
response = await websession.get(
self._still_image_url, auth=self._auth)