From 626abd3c83b3a985774d2065673f405ea4f1939d Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 3 May 2018 15:18:21 +0200 Subject: [PATCH] Fix lint --- qutebrowser/browser/greasemonkey.py | 2 +- qutebrowser/mainwindow/statusbar/command.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/qutebrowser/browser/greasemonkey.py b/qutebrowser/browser/greasemonkey.py index 468f123d3..578830793 100644 --- a/qutebrowser/browser/greasemonkey.py +++ b/qutebrowser/browser/greasemonkey.py @@ -171,7 +171,7 @@ class GreasemonkeyMatcher: return fnmatch.fnmatch(self._url_string, pattern) def matches(self, script): - """Check whether the URL matches filtering rules of the given script.""" + """Check whether the URL matches filtering rules of the script.""" assert self.is_greaseable matching_includes = any(self._match_pattern(pat) for pat in script.includes) diff --git a/qutebrowser/mainwindow/statusbar/command.py b/qutebrowser/mainwindow/statusbar/command.py index c0e3e095d..bb5c60b38 100644 --- a/qutebrowser/mainwindow/statusbar/command.py +++ b/qutebrowser/mainwindow/statusbar/command.py @@ -273,8 +273,8 @@ class Command(misc.MinimalLineEditMixin, misc.CommandLineEdit): width = self.fontMetrics().width(text) return QSize(width, height) - @pyqtSlot(str) - def _incremental_search(self, text): + @pyqtSlot() + def _incremental_search(self): if not config.val.search.incremental: return