attempting to use incompatible return type 提示 解决

一、问题:方法返回类型上有红线,提示信息:... attempting to use incompatible return type 

要返回的类型和定义的类型不一致,在A方法中调用B方法,直接返回B方法的返回结果,

在B方法中返回的是 X 包下的 Response 对象,但是在A方法中返回的是 Y 包中的 Response 对象。

导致返回类型不一致 。

二、解决: 导包时导同一个包中的 Response 类,让返回类型一致,就OK了。
 

要注意导包是否正确

上一篇:impala查询报错has an incompatible Parquet schema for column


下一篇:成功解决 “this version of pandas is incompatible with numpy < 1.15.4\n“ImportError: this version of pan