I'm running pylint and get the following error:
E: 69, 8: Module 'pycurl' has no 'Curl' member (no-member)
However, I can only use the Curl function, there is no curl function (proven by the script not running if I change to curl).
Source code:
c = pycurl.Curl()
Is there something I'm missing?
Thanks