summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-02 18:23:50 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-02 18:23:50 +0100
commit9909bf0b113b1357bb19c678046a14762b2b6901 (patch)
tree673dd6d69ac433a3b5cf4ece126b089b997914bd
parent2cbbbe54c64c23fc9bde6016a23ca38082849dc5 (diff)
downloadqutebrowser-9909bf0b113b1357bb19c678046a14762b2b6901.tar.gz
qutebrowser-9909bf0b113b1357bb19c678046a14762b2b6901.zip
Fix lint
-rw-r--r--tests/unit/completion/test_models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/unit/completion/test_models.py b/tests/unit/completion/test_models.py
index 3b8aba4fd..22e9c6490 100644
--- a/tests/unit/completion/test_models.py
+++ b/tests/unit/completion/test_models.py
@@ -461,7 +461,8 @@ def test_filesystem_completion_model_interface(info, local_files_path):
@hypothesis.given(
as_uri=hst.booleans(),
add_sep=hst.booleans(),
- text=hst.text(alphabet=hst.characters(blacklist_categories=['Cc'], blacklist_characters='\x00')),
+ text=hst.text(alphabet=hst.characters(
+ blacklist_categories=['Cc'], blacklist_characters='\x00')),
)
def test_filesystem_completion_hypothesis(info, as_uri, add_sep, text):
if as_uri: