Skip to content

Commit 00e68b7

Browse files
committed
fix: remove type hint
1 parent bff8e3b commit 00e68b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/pydantic_core/core_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class CoreConfig(TypedDict, total=False):
105105
# fields related to float fields only
106106
allow_inf_nan: bool # default: True
107107
# the config options are used to customise serialization to JSON
108-
ser_json_timedelta: Literal['iso8601', 'float', 'seconds_float', 'milliseconds_float'] # default: 'iso8601'
108+
ser_json_timedelta: Literal['iso8601', 'seconds_float', 'milliseconds_float'] # default: 'iso8601'
109109
ser_json_bytes: Literal['utf8', 'base64', 'hex'] # default: 'utf8'
110110
ser_json_inf_nan: Literal['null', 'constants', 'strings'] # default: 'null'
111111
val_json_bytes: Literal['utf8', 'base64', 'hex'] # default: 'utf8'

0 commit comments

Comments
 (0)