Skip to content

Commit

Permalink
review feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcSkovMadsen committed Oct 23, 2024
1 parent 14989c7 commit bdde196
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panel/io/jupyter_server_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ async def open(self, path, *args, **kwargs) -> None:
if self.session_id not in state._kernels:
self.close()
msg = f"Session ID '{self.session_id}' does not correspond to any active kernel."
raise ProtocolError(msg)
raise RuntimeError(msg)

kernel_info = state._kernels[self.session_id]
self.kernel, self.comm_id, self.kernel_id, _ = kernel_info
Expand Down

0 comments on commit bdde196

Please sign in to comment.