Skip to content

Commit

Permalink
put back methods
Browse files Browse the repository at this point in the history
  • Loading branch information
srmnitc committed Aug 6, 2024
1 parent 7381894 commit b88cd56
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions atomrdf/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,6 +814,10 @@ def __init__(
mapdict = {}
mapdict["repeat"] = self.repeat
mapdict["delete"] = self.delete
mapdict["transform_to_cubic_cell"] = update_wrapper(partial(operations.extract_cubic_representation, self), operations.extract_cubic_representation)
mapdict["remap_to_box"] = update_wrapper(partial(operations.remap_to_box, self), operations.remap_to_box)
mapdict["remap_position_to_box"] = update_wrapper(partial(operations.remap_position_to_box, self), operations.remap_position_to_box)
mapdict["embed_in_cubic_box"] = update_wrapper(partial(operations.embed_in_cubic_box, self), operations.embed_in_cubic_box)
self.modify._add_attribute(mapdict)

self.schema = AttrSetter()
Expand Down

0 comments on commit b88cd56

Please sign in to comment.