All issues
Anti-pattern
Bug risk
Coverage
Documentation
Performance
Secrets
Security
Style
Type check
Detected the use of one of the C-style pre/post increment or decrement operators, -- and ++, which don't exist in Python. Use the += or -= operators instead. This will cause an error:
--
++
+=
-=
x = 50 x++
But, doing this is okay:
x = 50 x += 1