Skip to content

Commit bbf4235

Browse files
committed
Fixing double assignment
1 parent 6bd1915 commit bbf4235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_rtc_core/kernels/kernel_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def handle_incoming_message(self, channel_name: str, msg: list[bytes]):
9494
# any response message can be mapped back to the
9595
# source channel.
9696
self.output_processor.process_incoming_message(channel=channel_name, msg=msg)
97-
header = header = json.loads(msg[0]) # TODO: use session.unpack
97+
header = json.loads(msg[0]) # TODO: use session.unpack
9898
msg_id = header["msg_id"]
9999
self.message_source_cache[msg_id] = channel_name
100100
channel = getattr(self, f"{channel_name}_channel")

0 commit comments

Comments
 (0)