我正在使用 Cloud9 IDE 并创建了一个 Python 项目。
但是,我在编辑器中的一行中不断收到错误,当我运行它时这不是错误,它说:
Instance of 'dict' has no 'columns' member
如何使用 Python 语法或 Cloud9 语法抑制此错误?
注意:当我运行代码时,它不会导致错误。我的 IDE 编辑器只是认为这是一个错误并警告我。
xl = pd.ExcelFile(dataFileUrl)
sheets = xl.sheet_names
data = xl.parse(sheets[0])
# the ERROR warning is on the line for data.columns
for ecol in expectedCols:
if (ecol in data.columns) == False:
return {
'fail': True,
'code': 402,
'msg': "Incomplete data. Missing: " + ecol
}