Skip to content

Commit

Permalink
Fix types lints
Browse files Browse the repository at this point in the history
This is triggering a linting error, and pollute other PRs with errors.
  • Loading branch information
Carreau committed Feb 12, 2025
1 parent e64fb2e commit 498d806
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipykernel/subshell_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,9 +124,9 @@ async def listen_from_control(self, subshell_task: t.Any) -> None:

socket = self._control_shell_channel_socket
while True:
request = await socket.recv_json() # type: ignore[misc]
request = await socket.recv_json()
reply = await self._process_control_request(request, subshell_task)
await socket.send_json(reply) # type: ignore[func-returns-value]
await socket.send_json(reply)

async def listen_from_subshells(self) -> None:
"""Listen for reply messages on inproc sockets of all subshells and resend
Expand Down

0 comments on commit 498d806

Please sign in to comment.