plugin-python icon indicating copy to clipboard operation
plugin-python copied to clipboard

Fix python3 spread operator in dicts

Open patrick91 opened this issue 7 years ago • 0 comments

This:

combination = {**first_dictionary, "x": 1, "y": 2}

gets changed to:

combination = {: first_dictionary, "x": 1, "y": 2}

patrick91 avatar Mar 03 '18 16:03 patrick91