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