Bump zigpy to 0.44.1 and zha-quirks to 0.0.69 (#68921)
* Make unit tests pass * Flip response type check to not rely on it being a list https://github.com/zigpy/zigpy/pull/716#issuecomment-1025236190 * Bump zigpy and quirks versions to ZCLR8 releases * Fix renamed zigpy cluster attributes * Handle the default response for ZLL `get_group_identifiers` * Add more error context to `stage failed` errors * Fix unit test returning lists as ZCL request responses * Always load quirks when testing ZHA * Bump zha-quirks to 0.0.69
This commit is contained in:
parent
398db35334
commit
0f6296e4b5
31 changed files with 248 additions and 122 deletions
|
@ -139,11 +139,11 @@ class BaseZhaEntity(LogMixin, entity.Entity):
|
|||
)
|
||||
self._unsubs.append(unsub)
|
||||
|
||||
def log(self, level: int, msg: str, *args):
|
||||
def log(self, level: int, msg: str, *args, **kwargs):
|
||||
"""Log a message."""
|
||||
msg = f"%s: {msg}"
|
||||
args = (self.entity_id,) + args
|
||||
_LOGGER.log(level, msg, *args)
|
||||
_LOGGER.log(level, msg, *args, **kwargs)
|
||||
|
||||
|
||||
class ZhaEntity(BaseZhaEntity, RestoreEntity):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue