From d0bbb6bdbba6d17e5c9948931cd7a18be3cedc59 Mon Sep 17 00:00:00 2001 From: Mariatta Date: Wed, 24 Jul 2024 15:56:04 -0700 Subject: [PATCH] PEP 635: Minor typo fix in code sample (#3871) 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 9e25e8f20..114972a97 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) ...