From 4e3e9ba2c6c652aaadf24da95d39b23645185fc0 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Tue, 9 Aug 2022 10:55:45 +0300 Subject: [PATCH] Remove outdated `TODO` comment (#8508) --- stdlib/builtins.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/builtins.pyi b/stdlib/builtins.pyi index 82907fe7a..f97e787b0 100644 --- a/stdlib/builtins.pyi +++ b/stdlib/builtins.pyi @@ -1287,7 +1287,7 @@ class filter(Iterator[_T], Generic[_T]): def __iter__(self: Self) -> Self: ... def __next__(self) -> _T: ... -def format(__value: object, __format_spec: str = ...) -> str: ... # TODO unicode +def format(__value: object, __format_spec: str = ...) -> str: ... @overload def getattr(__o: object, __name: str) -> Any: ...