我正在尝试使用FastAPI编写应用程序,该应用程序大量使用pydantic。我也想使用mypy
来检查我的代码。如何为pydantic和mypy使用类型注释而不会发生冲突?
我知道type: ignore
的评论,但我认为这是一种作弊:)
示例:
from pydantic import BaseModel, Schema
class UsersQuery(BaseModel):
limit: int = Schema(default=100, gt=0, le=100)
offset: int = Schema(default=0, ge=0)
此代码正常工作,但类型检查失败。
mypy输出:
error: Incompatible types in assignment (expression has type "Schema", variable has type "int")
error: Incompatible types in assignment (expression has type "Schema", variable has type "int")
type: ignore
是目前唯一的解决方案。
pydantic的版本1应该在几天之内发布,其中Field
(代替v1中的Schema
是返回Any
的函数,应该可以解决此问题。
tl; dr等待fast1发行并受fastapi支持,您的问题应得到解决。