Pattern: Missing whitespace around arithmetic operator
Issue: -
There should be one space before and after an arithmetic operator (+
, -
, /
, and *
).
age = 10+15
age = 10 + 15
Pattern: Missing whitespace around arithmetic operator
Issue: -
There should be one space before and after an arithmetic operator (+
, -
, /
, and *
).
age = 10+15
age = 10 + 15