Skip to content
Snippets Groups Projects

Resolve "Collapse arrays of identical values to scalar"

1 file
+ 0
8
Compare changes
  • Side-by-side
  • Inline
@@ -38,14 +38,6 @@ class ForEachObject(abc.ABC):
"""Return list of object indices."""
raise NotImplementedError
def transform(self, transformation):
"""Transform dictionary on-the-spot.
Args:
transformation: function (mosa, value -> new_value)
"""
self.dict = {mosa: transformation(mosa, self[mosa]) for mosa in self.indices()}
def transformed(self, transformation):
"""Return a new dictionary from transformed objects.
Loading