Skip to content

Commit

Permalink
Update jupyter_server/services/sessions/sessionmanager.py
Browse files Browse the repository at this point in the history
Co-authored-by: Steven Silvester <steven.silvester@ieee.org>
  • Loading branch information
Zsailer and blink1073 committed Mar 24, 2022
1 parent 10ea902 commit 6491f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_server/services/sessions/sessionmanager.py
Expand Up @@ -74,7 +74,7 @@ def __eq__(self, other: "KernelSessionRecord") -> bool:
return False

def update(self, other: "KernelSessionRecord") -> None:
"""Updates in-place a kernel from other (only accepts positive updates"""
"""Updates in-place a kernel from other (only accepts positive updates)"""
if not isinstance(other, KernelSessionRecord):
raise TypeError("'other' must be an instance of KernelSessionRecord.")

Expand Down

0 comments on commit 6491f9b

Please sign in to comment.