CPAlgorithms: bugfix in ConfigAccumulator
The excludeFrom
argument introduced in !68653 (merged) leads to a crash when it is left to its default value of None
, as that one is then set to {}
which in Python3 is the empty dictionary - and not the empty set, which is the expected type of excludeFrom
.