From 79f1d16dbf7f3ab0f23ee6db908816109142ace4 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Wed, 5 Jan 2022 12:12:16 +0000 Subject: [PATCH] Get rid of 'Name ReadableBuffer is not defined' error in builtins --- stdlib/builtins.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 43c2a1015008..ad6682f8f339 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -79,7 +79,7 @@ BufferedWriter = Any FileIO = Any CodeType = Any TracebackType = Any - +ReadableBuffer = Any class _SupportsIter(Protocol[_T_co]): def __iter__(self) -> _T_co: ...