pylint-errors

W0109 (duplicate-key)

:x: Problematic code:

foo = {'key': 'value1', 'key': 'value2'}

:heavy_check_mark: Correct code:

foo = {'key1': 'value1', 'key2': 'value2'}

Rationale:

Used when a dictionary expression binds the same key multiple times.