From 75972217766476f59e8e2a77d6b94e0bf94f3add Mon Sep 17 00:00:00 2001 From: Daniel Schadt Date: Tue, 12 Jul 2016 22:39:21 +0200 Subject: [PATCH] fix lint --- qutebrowser/utils/usertypes.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qutebrowser/utils/usertypes.py b/qutebrowser/utils/usertypes.py index 81ad0086a..e365d5645 100644 --- a/qutebrowser/utils/usertypes.py +++ b/qutebrowser/utils/usertypes.py @@ -274,6 +274,7 @@ class FileDownloadTarget(DownloadTarget): """ def __init__(self, filename): + # pylint: disable=super-init-not-called self.filename = filename @@ -286,6 +287,7 @@ class FileObjDownloadTarget(DownloadTarget): """ def __init__(self, fileobj): + # pylint: disable=super-init-not-called self.fileobj = fileobj @@ -294,6 +296,7 @@ class OpenFileDownloadTarget(DownloadTarget): """Save the download in a temp dir and directly open it.""" def __init__(self): + # pylint: disable=super-init-not-called pass