mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
6212446db6
new file: projects/python.org/typing_extensions/test.py
7 lines
154 B
Python
7 lines
154 B
Python
import typing_extensions
|
|
|
|
class Movie(typing_extensions.TypedDict):
|
|
title: str
|
|
year: typing_extensions.NotRequired[int]
|
|
|
|
m = Movie(title="Grease") |