Skip to content

Commit 14b270a

Browse files
authored
Component asuswrt: handle_errors_and_zip._wrapper returns dict[str, str] (home-assistant#154544)
1 parent 8402bea commit 14b270a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

homeassistant/components/asuswrt/bridge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def _handle_errors_and_zip(
8787
"""Run library methods and zip results or manage exceptions."""
8888

8989
@functools.wraps(func)
90-
async def _wrapper(self: _AsusWrtBridgeT) -> dict[str, Any]:
90+
async def _wrapper(self: _AsusWrtBridgeT) -> dict[str, str]:
9191
try:
9292
data = await func(self)
9393
except exceptions as exc:

0 commit comments

Comments
 (0)