We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe255e commit 4e899a4Copy full SHA for 4e899a4
conformance/tests/typeddicts_extra_items.py
@@ -219,7 +219,7 @@ class MovieWithYear2(TypedDict, extra_items=int | None):
219
year: int | None
220
221
details3: MovieWithYear2 = {"name": "Kill Bill Vol. 1", "year": 2003}
222
-movie3: MovieBase2 = details3 # E:'year' is not required in 'Movie', but it is required in 'MovieWithYear2'
+movie3: MovieBase2 = details3 # E:'year' is not required in 'MovieBase2', but it is required in 'MovieWithYear2'
223
224
# > When ``extra_items`` is specified to be read-only on a TypedDict type, it is
225
# > possible for an item to have a :term:`narrower <narrow>` type than the
0 commit comments