Root.Redundancy.UnusedVariable |
Parent | Index |
Sibling aspects | Clone | UnreachableCode | UnusedImport |
Unused variables are declared but never used.
a = {}
print ('coala')
Unused variables can degrade performance marginally but more importantly makes the source code harder to read and understand.
Those variables can easily be removed without consequences.