Skip to content

Commit

Permalink
Merge pull request #577 from Cj-bc/fix-typo
Browse files Browse the repository at this point in the history
Fix comment typo
  • Loading branch information
blink1073 authored Jan 11, 2021
2 parents bf4c404 + d4b59d5 commit 5630704
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ipykernel/kernelbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,7 @@ def _send_abort_reply(self, stream, msg, idents):
)

def _no_raw_input(self):
"""Raise StdinNotImplentedError if active frontend doesn't support
"""Raise StdinNotImplementedError if active frontend doesn't support
stdin."""
raise StdinNotImplementedError("raw_input was called, but this "
"frontend does not support stdin.")
Expand All @@ -818,7 +818,7 @@ def getpass(self, prompt='', stream=None):
Raises
------
StdinNotImplentedError if active frontend doesn't support stdin.
StdinNotImplementedError if active frontend doesn't support stdin.
"""
if not self._allow_stdin:
raise StdinNotImplementedError(
Expand All @@ -839,7 +839,7 @@ def raw_input(self, prompt=''):
Raises
------
StdinNotImplentedError if active frontend doesn't support stdin.
StdinNotImplementedError if active frontend doesn't support stdin.
"""
if not self._allow_stdin:
raise StdinNotImplementedError(
Expand Down

0 comments on commit 5630704

Please sign in to comment.