diff --git a/python_typing/README.md b/python_typing/README.md index ea9e857f..488c742e 100644 --- a/python_typing/README.md +++ b/python_typing/README.md @@ -71,6 +71,9 @@ a: Any = 0 b: float = 0.0 a = b ``` +### Never type +This can be used to define a function that should never be called, or a function that never returns. + ### Generic types