Missing whitespace after arithmetic operator (E173)
There should be one space after an arithmetic operator (+, -, /, *, ^, \\ and Mod).
Anti-pattern
Bar = 3 +2
Best practice
Bar = 3 + 2
There should be one space after an arithmetic operator (+, -, /, *, ^, \\ and Mod).
Bar = 3 +2
Bar = 3 + 2