pylint-errors

W0613 (unused-argument)

:x: Problematic code:

def foo(x, y):
    return {x: None}

:heavy_check_mark: Correct code:

def foo(x, y):
    return {x: y}

Rationale:

Used when a function or method argument is not used.