summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorJoshua Powers <josh.powers@canonical.com>2020-06-02 08:24:29 -0700
committerGitHub <noreply@github.com>2020-06-02 11:24:29 -0400
commit5f7825e22241423322dbe628de1b00289cf34114 (patch)
tree1a2e8d8b3fc29f02256383df4012399b39600967 /tox.ini
parentd2b05719a6163e874ca40234a0b85dc2fea260c0 (diff)
downloadcloud-init-git-5f7825e22241423322dbe628de1b00289cf34114.tar.gz
test: fix all flake8 E241 (#403)
Remove extra spaces after a ','
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 1 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 725a0ca4..5ee67368 100644
--- a/tox.ini
+++ b/tox.ini
@@ -47,10 +47,9 @@ deps = -r{toxinidir}/test-requirements.txt
# E123: closing bracket does not match indentation of opening bracket’s line
# E126: continuation line over-indented for hanging indent
# E226: missing whitespace around arithmetic operator
-# E241: multiple spaces after ‘,’
# W503: line break before binary operator
# W504: line break after binary operator
-ignore=E121,E123,E126,E226,E241,W503,W504
+ignore=E121,E123,E126,E226,W503,W504
exclude = .venv,.tox,dist,doc,*egg,.git,build,tools
per-file-ignores =
cloudinit/cmd/main.py:E402