Closed
Description
I think there is a bug in this line
The update method will overwrite the values in the keys of the 'transformation_kwargs' coming from the input, e.g. timeout cannot be changed because of this.
transformation_kwargs={"timeout":1}
default_transformation_kwargs = {"check_ordered_symmetry": False, "timeout": 5}
transformation_kwargs = transformation_kwargs or {}
print(transformation_kwargs)
transformation_kwargs.update(default_transformation_kwargs)
print(transformation_kwargs)
: {'timeout': 1}
: {'timeout': 5, 'check_ordered_symmetry': False}
Metadata
Metadata
Assignees
Labels
No labels