mypy:无类型装饰器使 FastAPI 路由的“main”函数成为无类型

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

考虑以下因素:

@app.post("/")
def main(body: RequestBody) -> dict[str, object]:
    pass

我收到以下错误:

无类型装饰器使函数“main”成为无类型[misc]mypy(error)

在网上找不到任何相关信息。我缺少什么?谢谢

python fastapi mypy
1个回答
0
投票

Python › Analysis: Type Checking Mode
设置从
strict
更改为
standard
为我解决了这个问题。

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