Fix sim slots configuration
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, ).