Skip to content

Commit 900bc4b

Browse files
committed
Revert "Add ignore[arg-type] to fix mypy false positive (#1190)"
This reverts commit 17d0f8e. It seems that this got resolved by aiohttp version 3.12.14.
1 parent 535f88a commit 900bc4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matter_server/server/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async def _handle_shutdown(app: web.Application) -> None:
8989
for client in set(clients):
9090
await client.disconnect()
9191

92-
server.app.on_shutdown.append(_handle_shutdown) # type: ignore[arg-type]
92+
server.app.on_shutdown.append(_handle_shutdown)
9393
server.app.router.add_route("GET", path, _handle_ws)
9494

9595

0 commit comments

Comments
 (0)