Using the latest SonarLint version provided by PyCharm.
When using Python 3.5 matrix operator in an expression of the form a @ a
, SonarLint detects major bug python:S1764: Identical expressions should not be used on both sides of a binary operator.
According to PEP 456, there should be no problem in such an expression, unless operand dimensions are incompatible, but that’s not something SonarLint could statically analyze.