diff options
author | Florian Bruhin <me@the-compiler.org> | 2021-12-02 17:55:32 +0100 |
---|---|---|
committer | Florian Bruhin <me@the-compiler.org> | 2021-12-02 17:55:32 +0100 |
commit | 1ca68e6280f44493e0976f3535ae765dd2b6c90e (patch) | |
tree | f0cc7297987d96b0661d959948b10c5acedc730c /tests/unit | |
parent | d04c8e62d90443952a6e7a0d2678adf20c93fd75 (diff) | |
download | qutebrowser-1ca68e6280f44493e0976f3535ae765dd2b6c90e.tar.gz qutebrowser-1ca68e6280f44493e0976f3535ae765dd2b6c90e.zip |
pylint: Remove bad-continuation supressions
Removed in https://github.com/PyCQA/pylint/pull/3571 - should use black instead
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/utils/test_qtutils.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit/utils/test_qtutils.py b/tests/unit/utils/test_qtutils.py index d78a132bb..6309e46b5 100644 --- a/tests/unit/utils/test_qtutils.py +++ b/tests/unit/utils/test_qtutils.py @@ -51,7 +51,6 @@ else: test_file = None -# pylint: disable=bad-continuation @pytest.mark.parametrize(['qversion', 'compiled', 'pyqt', 'version', 'exact', 'expected'], [ # equal versions @@ -75,7 +74,6 @@ else: # dev suffix ('5.15.1', '5.15.1', '5.15.2.dev2009281246', '5.15.0', False, True), ]) -# pylint: enable=bad-continuation def test_version_check(monkeypatch, qversion, compiled, pyqt, version, exact, expected): """Test for version_check(). |