与Mypy一起使用pydantic

问题描述 投票:0回答:1

我正在尝试使用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")
python mypy fastapi pydantic
1个回答
2
投票

type: ignore是目前唯一的解决方案。

pydantic的版本1应该在几天之内发布,其中Field(代替v1中的Schema是返回Any的函数,应该可以解决此问题。

tl; dr等待fast1发行并受fastapi支持,您的问题应得到解决。

© www.soinside.com 2019 - 2024. All rights reserved.