Code Smells

Code Smells / Bloaters / Long Parameter List

Long Parameter List code smell icon

Long Parameter List

Long Parameter Lists are methods that have many arguments (parameters). This could be a sign that the method is responsible for too many tasks, or that the input data is poorly organised.

def long_parameter_list(self, arg_1, arg_2, arg_3, arg_4, arg_5, arg_6):
    pass
Left chevron Right chevron