Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PyViCare/PyViCare.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from PyViCare.PyViCareOAuthManager import ViCareOAuthManager
from PyViCare.PyViCareRoomControl import RoomControl
from PyViCare.PyViCareService import ViCareDeviceAccessor, ViCareService
from PyViCare.PyViCareUtils import PyViCareInvalidDataError, PyViCareNotSupportedFeatureError
from PyViCare.PyViCareUtils import PyViCareInvalidDataError

logger = logging.getLogger(__name__)
logger.addHandler(logging.NullHandler())
Expand Down Expand Up @@ -86,7 +86,7 @@ def __enrichZigbeeDevices(self):
room_control = RoomControl(device_config.service)
try:
actor_map = room_control.buildActorRoomMap()
except (KeyError, IndexError, PyViCareNotSupportedFeatureError):
except Exception: # pylint: disable=broad-exception-caught
logger.debug("Could not build actor map for %s", device_config.getModel(), exc_info=True)
continue

Expand Down
Loading