Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.28 KB

File metadata and controls

37 lines (24 loc) · 1.28 KB
Root.Redundancy.UnusedVariable.UnusedGlobalVariable Parent Index
Sibling aspects UnusedLocalVariable UnusedParameter

UnusedGlobalVariable

These are variable which have a global scope but are never used.

Subaspects

This aspect does not have any sub aspects.

Example

a = 0
for i in range (5):
    print ( ' coala ' )

Importance

They make the code difficult to maintain.

How to fix this

These can easily be removed without consequences.