Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Dec 17, 2024
1 parent 92acc33 commit 3ed8418
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 @@ -67,15 +67,15 @@ def __init__(

@property
def _control_shell_channel_socket(self) -> zmq_anyio.Socket:
if self.__control_shell_channel_socket is None:
if self.__control_shell_channel_socket is None:
self.__control_shell_channel_socket = self._create_inproc_pair_socket("control", True)
return self.__control_shell_channel_socket

@property
def _control_other_socket(self) -> zmq_anyio.Socket:
if self.__control_other_socket is None:
self.__control_other_socket = self._create_inproc_pair_socket("control", False)
return self.__control_other_socket
return self.__control_other_socket

@property
def _parent_shell_channel_socket(self) -> zmq_anyio.Socket:
Expand Down

0 comments on commit 3ed8418

Please sign in to comment.