Root.Redundancy.UnusedVariable.UnusedParameter |
Parent | Index |
Sibling aspects | UnusedGlobalVariable | UnusedLocalVariable |
Unused parameters are functions arguments which are never used.
This aspect does not have any sub aspects.
def func(a):
pass
Unused paramaters are useless to functions, they them difficult to use and maintain.
Those parameters can easily be removed without consequences.