summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.com>2020-03-27 19:33:12 +0100
committerAndreas Jaeger <aj@suse.com>2020-03-30 14:41:48 +0200
commitc483dee1f306b698448fbee9169038159209e916 (patch)
tree26f0e40f8e642d526d21e4a1344c1e3d92a0e4c5 /tox.ini
parenta0d99e1046f99607609f5b0e75942f90e85946ad (diff)
downloadoslo-policy-c483dee1f306b698448fbee9169038159209e916.tar.gz
Update hacking for Python3
The repo is Python 3 now, so update hacking to version 3.0 which supports Python 3. Blacklist: W503 line break before binary operator W504 line break after binary operator Fix: E123 closing bracket does not match indentation of opening bracket's line E126 continuation line over-indented for hanging indent Change-Id: I39003496a3f4be5a4cb05cdbae53a9c097e34e14
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 3 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index 6b29f08..cd5530d 100644
--- a/tox.ini
+++ b/tox.ini
@@ -44,7 +44,9 @@ commands =
[flake8]
show-source = True
-ignore =
+# W503 line break before binary operator
+# W504 line break after binary operator
+ignore = W503,W504
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build