Dont-Self-Assign-Variables
Documentation Index
Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
Use this file to discover all available pages before exploring further.
Sourcery rule id: dont-self-assign-variables
Section titled “Sourcery rule id: dont-self-assign-variables”Description
Section titled “Description”Assigning a variable to itself has no effect.
a = aExplanation
Section titled “Explanation”Assigning a variable to itself has no effect, and is therefore either redundant or a mistake.