|
1 | 1 | from __future__ import annotations
|
2 | 2 |
|
| 3 | +import functools |
3 | 4 | from dataclasses import asdict
|
4 | 5 | from typing import TYPE_CHECKING, Any, Hashable, Literal, Mapping, Pattern, TypedDict, cast
|
5 | 6 |
|
@@ -60,7 +61,7 @@ class Constraints(TypedDict):
|
60 | 61 | class FieldMeta:
|
61 | 62 | """Factory field metadata container. This class is used to store the data about a field of a factory's model."""
|
62 | 63 |
|
63 |
| - __slots__ = ("annotation", "children", "constraints", "default", "name", "random") |
| 64 | + __slots__ = ("__dict__", "annotation", "children", "constraints", "default", "name", "random") |
64 | 65 |
|
65 | 66 | annotation: Any
|
66 | 67 | random: Random
|
@@ -88,15 +89,18 @@ def __init__(
|
88 | 89 | self.name = name
|
89 | 90 | self.constraints = constraints
|
90 | 91 |
|
91 |
| - @property |
| 92 | + @functools.cached_property |
92 | 93 | def type_args(self) -> tuple[Any, ...]:
|
93 | 94 | """Return the normalized type args of the annotation, if any.
|
94 | 95 |
|
95 | 96 | :returns: a tuple of types.
|
96 | 97 | """
|
| 98 | + annotation = self.annotation |
| 99 | + if is_annotated(annotation): |
| 100 | + annotation = get_args(self.annotation)[0] |
97 | 101 | return tuple(
|
98 | 102 | TYPE_MAPPING.get(arg, arg) if isinstance(arg, Hashable) else arg # pyright: ignore[reportCallIssue,reportArgumentType]
|
99 |
| - for arg in get_args(self.annotation) |
| 103 | + for arg in get_args(annotation) |
100 | 104 | )
|
101 | 105 |
|
102 | 106 | @classmethod
|
@@ -140,9 +144,7 @@ def from_type(
|
140 | 144 | metadata = cls.get_constraints_metadata(annotation)
|
141 | 145 | constraints = cls.parse_constraints(metadata)
|
142 | 146 |
|
143 |
| - if annotated: |
144 |
| - annotation = get_args(annotation)[0] |
145 |
| - elif (origin := get_origin(annotation)) and origin in TYPE_MAPPING: # pragma: no cover |
| 147 | + if not annotated and (origin := get_origin(annotation)) and origin in TYPE_MAPPING: |
146 | 148 | container = TYPE_MAPPING[origin]
|
147 | 149 | annotation = container[get_args(annotation)] # type: ignore[index]
|
148 | 150 |
|
|
0 commit comments