From 63c09ba00569c155e371582a42346f11418f4368 Mon Sep 17 00:00:00 2001 From: Eclips4 Date: Mon, 1 May 2023 16:08:02 +0300 Subject: [PATCH] gh-104036: Fix direct invocation of est_typing --- Lib/test/test_typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index f36bb958c88ef9..7c6a521c3c48f8 100644 --- a/Lib/test/test_typing.py +++ b/Lib/test/test_typing.py @@ -117,7 +117,7 @@ def test_repr(self): class Sub(Any): pass self.assertEqual( repr(Sub), - ".Sub'>", + f".Sub'>", ) def test_errors(self):