From fa6b7d0d42a013534e50f5a9373ea39d652f99ba Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 20 Dec 2020 00:01:07 +0100 Subject: [PATCH] Wrong reason stated in flake8 listing --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 68df7d70..620fa7f1 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -82,7 +82,7 @@ operator precedence like `2*a + 3*b` instead of `a * a + 3 * b`. Generally, don' dropped. Don't use the `+` operator for appending multiple strings. Use formatting instead. **E228** missing whitespace around modulo operator -**Reason:** Column alignment. +**Reason:** See reason for E226. Formatting `%` like `/` and `*` should be possible. **E241:** multiple spaces after ‘,’ **Reason:** Column alignment.