Skip to content

Enable overriding of kwargs in SerialDataHandling.run_kernel

Apparently

kernel_function(**{**arrays, **kwargs})

does the same as

        call_dict = {}
        call_dict.update(arrays)
        call_dict.update(kwargs)
        kernel_function(**call_dict)

But

kernel_function(**arrays, **kwargs)

causes an error if a key is in arrays and kwargs.

Edited by Stephan Seitz

Merge request reports