@@ -402,7 +402,9 @@ This is the current list of error and warning codes:
402
402
+------------+----------------------------------------------------------------------+
403
403
| **W5 ** | *Line break warning * |
404
404
+------------+----------------------------------------------------------------------+
405
- | W503 (*) | line break occurred before a binary operator |
405
+ | W503 (*) | line break before binary operator |
406
+ +------------+----------------------------------------------------------------------+
407
+ | W504 (*) | line break after binary operator |
406
408
+------------+----------------------------------------------------------------------+
407
409
+------------+----------------------------------------------------------------------+
408
410
| **W6 ** | *Deprecation warning * |
@@ -420,9 +422,10 @@ This is the current list of error and warning codes:
420
422
421
423
422
424
**(*) ** In the default configuration, the checks **E121 **, **E123 **, **E126 **,
423
- **E133 **, **E226 **, **E241 **, **E242 **, **E704 ** and **W503 ** are ignored because
424
- they are not rules unanimously accepted, and `PEP 8 `_ does not enforce them. The
425
- check **E133 ** is mutually exclusive with check **E123 **. Use switch
425
+ **E133 **, **E226 **, **E241 **, **E242 **, **E704 **, **W503 ** and **W504 ** are ignored
426
+ because they are not rules unanimously accepted, and `PEP 8 `_ does not enforce them.
427
+ The check **W503 ** is mutually exclusive with check **W504 **.
428
+ The check **E133 ** is mutually exclusive with check **E123 **. Use switch
426
429
``--hang-closing `` to report **E133 ** instead of **E123 **.
427
430
428
431
**(^) ** These checks can be disabled at the line level using the ``# noqa ``
0 commit comments