E0107
Message
Use of the non-existent %s operator
Description
Used when you attempt to use operators that do not exist in Python.
This message belongs to the basic checker.
Explanation
One example are the C-style pre- or post- increment or decrement operators — and ++, which don't exist in Python. In this case, use the += or -= operators instead.