Skip to content

Allow function arguments in config syntax

David Schäfer requested to merge config_func into develop

The config syntax treats function arguments called func in a special way. Currently we always try to build a lambda function from the values passed to the func parameters, which leads to failures and we ar not able to map the API call

qc.flagByStatLowPass(func="std")

to the configuration. This MR fixes this issue.

Merge request reports