From 4b184356f1ed59efd992da4d2e243b84cfcd6839 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Mon, 18 Jul 2022 19:53:15 -0700 Subject: [PATCH] string: remove stray comment (#8329) --- stdlib/string.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/stdlib/string.pyi b/stdlib/string.pyi index 222129c7f..1b9ba5b58 100644 --- a/stdlib/string.pyi +++ b/stdlib/string.pyi @@ -46,7 +46,6 @@ class Template: def get_identifiers(self) -> list[str]: ... def is_valid(self) -> bool: ... -# TODO(MichalPokorny): This is probably badly and/or loosely typed. class Formatter: @overload def format(self, __format_string: LiteralString, *args: LiteralString, **kwargs: LiteralString) -> LiteralString: ...