diff options
-rw-r--r-- | qutebrowser/misc/throttle.py | 1 | ||||
-rw-r--r-- | tests/unit/utils/test_log.py | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/qutebrowser/misc/throttle.py b/qutebrowser/misc/throttle.py index 16a14d4bd..ac565b68d 100644 --- a/qutebrowser/misc/throttle.py +++ b/qutebrowser/misc/throttle.py @@ -85,7 +85,6 @@ class Throttle(QObject): (cur_time_ms - self._last_call_ms)) # Disconnect any existing calls, continue if no connections. try: - # pylint: disable=no-value-for-parameter self._timer.timeout.disconnect() except TypeError: pass diff --git a/tests/unit/utils/test_log.py b/tests/unit/utils/test_log.py index 20938d6fb..bbc6b02db 100644 --- a/tests/unit/utils/test_log.py +++ b/tests/unit/utils/test_log.py @@ -236,7 +236,6 @@ class TestInitLog: """Tests for init_log.""" def _get_default_args(self): - # pylint: disable-next=unused-variable return argparse.Namespace(debug=True, loglevel='debug', color=True, loglines=10, logfilter=None, force_color=False, json_logging=False, |