Is there a way to achieve the following:
calculate_fun(self.key1="some_value", self.key2="another_value")
Basically use a variable as the key for a Keyword variable.
Currently, if I try this it errors out as it is not accepting a variable on the left hand side of the "=" sign. It is expecting something in the form of:
calculate_fun(field1="some_value", field2="another_value")
But that means that I need to hardcode field1 and field2. I would like the keyword to be a variable so I can change it at runtime, hence field1 can become field55 at runtime.