variable=[]
错误:
error: Need type annotation for 'variable' (hint: "variable: List[<type>] = ...")
在配置文件中:mypy.ini
disallow_any_expr=False
有什么方法可以通过配置文件中的标志来覆盖此错误吗?
你可以试试这个:
mypy --show-error-code your_module.py
,会输出方括号内的错误代码mypy.ini
中,添加 disable_error_code = code