summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-18 10:59:51 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-03-18 10:59:51 +0100
commitc07b93b7c40aef496e8e0a298e4fbafedf4ee8d0 (patch)
tree3580c82116ed393ad52ea6542e437aa22b2155ca /scripts
parent5ce8a9c9c19e2aaec591b191d3c3efebd1957fa7 (diff)
downloadqutebrowser-c07b93b7c40aef496e8e0a298e4fbafedf4ee8d0.tar.gz
qutebrowser-c07b93b7c40aef496e8e0a298e4fbafedf4ee8d0.zip
pylint: Disable pointless-statement in tests
Diffstat (limited to 'scripts')
-rw-r--r--scripts/dev/run_pylint_on_tests.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/dev/run_pylint_on_tests.py b/scripts/dev/run_pylint_on_tests.py
index 16a281d57..d0385bd17 100644
--- a/scripts/dev/run_pylint_on_tests.py
+++ b/scripts/dev/run_pylint_on_tests.py
@@ -58,6 +58,7 @@ def main():
'protected-access',
'len-as-condition',
'compare-to-empty-string',
+ 'pointless-statement',
# directories without __init__.py...
'import-error',
]