From 8aa3a864735a560bfc6798dac6777a4d78500f06 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Sun, 2 Nov 2025 22:21:14 -0800 Subject: [PATCH] Use consistent definition of NotImplementedType --- stdlib/builtins.pyi | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 2ab74bd976d5..38be452e8d49 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -2044,8 +2044,7 @@ else: @final @type_check_only - class _NotImplementedType(Any): - __call__: None + class _NotImplementedType(Any): ... NotImplemented: _NotImplementedType