Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
adriangb committed Nov 24, 2023
1 parent fb7dd1d commit abb8902
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_types.py
Expand Up @@ -6143,8 +6143,8 @@ class MyTypedDict(TypedDict):
b: NotRequired[OmittableInt]

class Model(BaseModel):
a_list: list[OmittableInt]
a_dict: dict[OmittableInt, OmittableInt]
a_list: List[OmittableInt]
a_dict: Dict[OmittableInt, OmittableInt]
a_typed_dict: MyTypedDict

actual = Model(
Expand Down

0 comments on commit abb8902

Please sign in to comment.