Skip to content
Prev Previous commit
Next Next commit
Fix first line of NoReturn docstring
  • Loading branch information
AlexWaygood committed Jun 5, 2023
commit ab3e62702533500851f99447fe70b7c9809cf2bb
4 changes: 3 additions & 1 deletion Lib/typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,9 @@ def __new__(cls, *args, **kwargs):

@_SpecialForm
def NoReturn(self, parameters):
"""Special type indicating functions that never return::
"""Special type indicating functions that never return.

Example::

from typing import NoReturn

Expand Down