如何在包级别禁用 mypy 错误代码?

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

variable=[]

错误:

 error: Need type annotation for 'variable' (hint: "variable: List[<type>] = ...")

在配置文件中:mypy.ini

disallow_any_expr=False

有什么方法可以通过配置文件中的标志来覆盖此错误吗?

python mypy
1个回答
8
投票

你可以试试这个:

  • 运行
    mypy --show-error-code your_module.py
    ,会输出方括号内的错误代码
  • mypy.ini
    中,添加
    disable_error_code = code
© www.soinside.com 2019 - 2024. All rights reserved.