Fix pylint on CI

For some reason, we get an error here on Travis but not locally. This happens
even with the same Python/pylint/astroid versions...
This commit is contained in:
Florian Bruhin 2019-02-16 19:50:02 +01:00
parent 2d996baea0
commit 3fd7b58107

View File

@ -34,8 +34,8 @@ class FixedDataNetworkReply(QNetworkReply):
"""QNetworkReply subclass for fixed data."""
def __init__(self, request, fileData, mimeType, # noqa: N803
parent=None):
def __init__(self, request, # noqa: N803 pylint: disable=invalid-name
fileData, mimeType, parent=None):
"""Constructor.
Args: