From 4c9ae97bb4c903a74b85f528262d193ccd06f8e5 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Thu, 23 Nov 2023 19:13:24 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- python_typing/README.md | 3 +++ 1 file changed, 3 insertions(+) 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