Redundancy.UnusedVariable.UnusedLocalVariable |
Parent | Index |
Sibling aspects | UnusedGlobalVariable | UnusedParameter |
These are variable which are defined locally but never used.
This aspect does not have any sub aspects.
def func():
for i in range (5):
a = 0
print ( ' coala ' )
They make the code difficult to maintain.
These can easily be removed without consequences.