Browse Source
Change the `dataclasses.is_dataclass` overload used from ``` @overload def is_dataclass(obj: object) -> TypeIs[DataclassInstance | type[DataclassInstance]]: ... ``` to ``` @overload def is_dataclass(obj: type) -> TypeIs[type[DataclassInstance]]: ... ``` This fixes the following mypy errors: ``` fastapi/encoders.py:244: error: Argument 1 to "asdict" has incompatible type "DataclassInstance | type[DataclassInstance]"; expected "DataclassInstance" [arg-type] fastapi/routing.py:122: error: Argument 1 to "asdict" has incompatible type "DataclassInstance | type[DataclassInstance]"; expected "DataclassInstance" [arg-type] Found 2 errors in 2 files (checked 44 source files) ```pull/12970/head
2 changed files with 2 additions and 2 deletions
Loading…
Reference in new issue