summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.pylintrc3
-rw-r--r--qutebrowser/utils/typing.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/.pylintrc b/.pylintrc
index 92720e3a4..28ca48a69 100644
--- a/.pylintrc
+++ b/.pylintrc
@@ -34,7 +34,8 @@ disable=no-self-use,
redefined-variable-type,
suppressed-message,
too-many-return-statements,
- duplicate-code
+ duplicate-code,
+ wrong-import-position
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$
diff --git a/qutebrowser/utils/typing.py b/qutebrowser/utils/typing.py
index f4b0dd990..4e20c91e3 100644
--- a/qutebrowser/utils/typing.py
+++ b/qutebrowser/utils/typing.py
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with qutebrowser. If not, see <http://www.gnu.org/licenses/>.
-# pylint: disable=unused-import,wrong-import-position,bad-mcs-method-argument
+# pylint: disable=unused-import,bad-mcs-method-argument
"""Wrapper for Python 3.5's typing module.