mirror of
https://github.com/home-assistant/core.git
synced 2026-09-06 13:32:08 +01:00
Use BaseException instead of bare except in rainforest_raven (#176562)
This commit is contained in:
@@ -138,7 +138,7 @@ class RAVEnDataCoordinator(DataUpdateCoordinator):
|
||||
await device.open()
|
||||
await device.synchronize()
|
||||
self._device_info = await device.get_device_info()
|
||||
except:
|
||||
except BaseException:
|
||||
await device.abort()
|
||||
raise
|
||||
|
||||
|
||||
Reference in New Issue
Block a user