I have a simple function called like this:
arbitrary_function(**kwargs1, **kwargs2, **kwargs3)
It seems to compile on my local installation (python 3.5.1), but throws a SyntaxError when I compile it on the docker using python 3.4.5.
I'm not too sure why this behavior is present. Are multiple quarts allowed? Do I have to combine them before moving on to a function? It is more convenient to transfer them individually, for example:
plot(**x_axis_params, **y_axis_params, **plot_params)
instead
params = dict()
for specific_param in [x_axis_params, y_axis_params, plot_params]:
params.update(specific_param)
plot(**params)
source
share