diff --git a/pep-0526.txt b/pep-0526.txt index 6abfa028e..2adb19ea9 100644 --- a/pep-0526.txt +++ b/pep-0526.txt @@ -278,7 +278,7 @@ As a matter of convenience (and convention), instance variables can be annotated in ``__init__`` or other methods, rather than in the class:: from typing import Generic, TypeVar - T = TypeVar(’T’) + T = TypeVar('T') class Box(Generic[T]): def __init__(self, content):