From 9267c91c5394bc4259ae8553f7f5a16562e5c5f0 Mon Sep 17 00:00:00 2001 From: mariatta Date: Wed, 24 Jul 2024 15:40:35 -0700 Subject: [PATCH] PEP 635: Minor typo fix in code sample. Looks like an unclosed f-string. --- peps/pep-0635.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/peps/pep-0635.rst b/peps/pep-0635.rst index 9e25e8f2088..114972a97c7 100644 --- a/peps/pep-0635.rst +++ b/peps/pep-0635.rst @@ -1118,7 +1118,7 @@ be emulated by a user-defined class as follows:: The proposal was to combine patterns with type annotations:: match x: - case [a: int, b: str]: print(f"An int {a} and a string {b}:) + case [a: int, b: str]: print(f"An int {a} and a string {b}:") case [a: int, b: int, c: int]: print("Three ints", a, b, c) ...