Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Mar 26, 2024
1 parent 42a9f2f commit 32de56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pydantic_core/core_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class CoreConfig(TypedDict, total=False):
validation_error_cause: bool # default: False
coerce_numbers_to_str: bool # default: False
regex_engine: Literal['rust-regex', 'python-re'] # default: 'rust-regex'
cache_strings: bool | Literal['all', 'keys', 'none'] # default: 'True'
cache_strings: Union[bool, Literal['all', 'keys', 'none']] # default: 'True'


IncExCall: TypeAlias = 'set[int | str] | dict[int | str, IncExCall] | None'
Expand Down

0 comments on commit 32de56f

Please sign in to comment.