This rule raises an issue when the inequality operator <> is used.
The operators <> and != are equivalent. However, the <> operator is considered obsolete in
Python 2.7 and has been removed from Python 3. Therefore, it is recommended to use != instead.
return a <> b # Noncompliant: the operator "<>" is deprecated.
return a != b