Fix lamarzocco ParamSpec typing (#126616)
This commit is contained in:
parent
ef88425d25
commit
004941cc57
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ class LaMarzoccoUpdateCoordinator(DataUpdateCoordinator[None]):
|
||||||
**kwargs: _P.kwargs,
|
**kwargs: _P.kwargs,
|
||||||
) -> None:
|
) -> None:
|
||||||
try:
|
try:
|
||||||
await func()
|
await func(*args, **kwargs)
|
||||||
except AuthFail as ex:
|
except AuthFail as ex:
|
||||||
msg = "Authentication failed."
|
msg = "Authentication failed."
|
||||||
_LOGGER.debug(msg, exc_info=True)
|
_LOGGER.debug(msg, exc_info=True)
|
||||||
|
|
Loading…
Add table
Reference in a new issue