We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 202e33b commit 2aa30ebCopy full SHA for 2aa30eb
stac_pydantic/shared.py
@@ -9,7 +9,6 @@
9
BaseModel,
10
ConfigDict,
11
Field,
12
- PlainSerializer,
13
)
14
from typing_extensions import Annotated
15
@@ -30,9 +29,6 @@
30
29
AwareDatetime,
31
# Convert the input value to UTC timezone
32
AfterValidator(lambda d: d.astimezone(timezone.utc)),
33
- # Use `isoformat` to serialize the value in an RFC3339 compatible format
34
- # for example: "2024-01-01T00:00:00+00:00"
35
- PlainSerializer(lambda d: d.isoformat()),
36
]
37
38
0 commit comments