diff --git a/qutebrowser/misc/miscwidgets.py b/qutebrowser/misc/miscwidgets.py index 0867d120c..ffdfc951a 100644 --- a/qutebrowser/misc/miscwidgets.py +++ b/qutebrowser/misc/miscwidgets.py @@ -25,8 +25,8 @@ from PyQt5.QtWidgets import (QLineEdit, QWidget, QHBoxLayout, QLabel, from PyQt5.QtGui import QValidator, QPainter from qutebrowser.config import config -from qutebrowser.utils import utils, qtutils, log, usertypes -from qutebrowser.misc import cmdhistory, objects +from qutebrowser.utils import utils +from qutebrowser.misc import cmdhistory class MinimalLineEditMixin: diff --git a/tests/unit/config/test_configcommands.py b/tests/unit/config/test_configcommands.py index 80328a22d..6434a1c9c 100644 --- a/tests/unit/config/test_configcommands.py +++ b/tests/unit/config/test_configcommands.py @@ -107,9 +107,9 @@ class TestSet: monkeypatch.setattr(objects, 'backend', usertypes.Backend.QtWebKit) option = 'content.javascript.enabled' - with pytest.raises( - cmdexc.CommandError, - match='Error while parsing http://: Pattern without host'): + with pytest.raises(cmdexc.CommandError, + match=('Error while parsing http://: Pattern ' + 'without host')): commands.set(0, option, 'false', pattern='http://') def test_set_no_pattern(self, monkeypatch, commands):