Closed hdoupe closed 4 years ago
Fixes bug where the user isn't able to revert an ops argument back to the default value:
class Params3(Parameters): array_first = True defaults = {"schema": {"operators": {"array_first": True}}} params = Params3(array_first=False) # Bug: params.array_first == True # Fix: params.array_first == False
Fixes bug where the user isn't able to revert an ops argument back to the default value: