plugin-python
plugin-python copied to clipboard
Fix python3 spread operator in dicts
This:
combination = {**first_dictionary, "x": 1, "y": 2}
gets changed to:
combination = {: first_dictionary, "x": 1, "y": 2}