org.sonar.l10n.py.rules.python.S1656.html Maven / Gradle / Ivy
The newest version!
Why is this an issue?
There is no reason to re-assign a variable to itself. Either this statement is redundant and should be removed, or the re-assignment is a mistake
and some other value or variable was intended for the assignment instead.
Noncompliant code example
name = name
Compliant solution
name = other.name
© 2015 - 2025 Weber Informatics LLC | Privacy Policy