當我測試使用Requests的模塊時,pylint有一個合適的說法,並聲稱我使用的various members of the Request object不存在。我怎樣才能解決這個問題?我已經用--generated-members = objects選項運行了pylint。使pylint容忍請求
例如,該代碼細運行:
import requests
response = requests.get('https://github.com/timeline.json')
print response.content
但pylint的權利要求書中,字段不存在:
ID:的 '請求' E1103實例沒有 '內容' 構件(但一些 類型無法推斷)
您可以使用類似'#pylint:disable = warning-code'的註釋在本地禁用pylint警告。 [Here](http://pylint-messages.wikidot.com/all-codes)你可以找到一個代碼列表。 – Bakuriu
可以喲顯示一些代碼和確切的錯誤消息嗎? – Vicent
@Vicent新增示例。 –