Files
pydantic/docs/examples/postponed_annotations_works.py
T
2020-05-31 14:54:12 +01:00

11 lines
239 B
Python

from __future__ import annotations
from typing import List # <-- List is defined in the module's global scope
from pydantic import BaseModel
def this_works():
class Model(BaseModel):
a: List[int]
print(Model(a=(1, 2)))