Skip to content

Fix sim slots configuration

Marco Clemencic requested to merge fix-sim into master

fixes an error introduced with !303 (merged)

The problem is very subtle... this is fine:

func(param1=value, param2=...)

because param1 will be bound to value inside the function, but this is not:

param1 = value,

because param1 will be bound to the tuple (value, ).

Merge request reports