mirror of
https://github.com/python/cpython.git
synced 2025-11-09 18:11:38 +00:00
6 lines
123 B
Python
6 lines
123 B
Python
from typing import ForwardRef
|
|
|
|
MyList = list[int]
|
|
MyDict = dict[str, 'MyList']
|
|
|
|
fw = ForwardRef('MyDict', module=__name__)
|