C0323

Message

Old: Operator not followed by a space

Description

Note: This message was replaced with C0326 in PyLint 1.1.0.

Used when one of the following operators (!= | <= | == | >= | < | > | = | += |
-= | *= | /= | %) is not followed by a space.

This message belongs to the format checker.

Explanation

Python does not require spaces around these operators, but it does improve readability and thus makes for easier debugging.


Add a New Comment
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License