Skip to content

Commit

Permalink
Merge branch 'fix-failing-rtd-builds' into trunk-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
joaander committed Jun 19, 2024
2 parents dc2f910 + 4ac93b7 commit efc5c37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hoomd/custom/custom_operation.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ def _wrap_loggable(name, mthd):
if isinstance(mthd, property):

@property
@functools.wraps(mthd)
def getter(self):
return getattr(self._action, name)

Expand All @@ -153,6 +152,7 @@ def getter(self):
def setter(self, new_value):
setattr(self._action, name, new_value)

getter.__doc__ = mthd.__doc__
return getter

@functools.wraps(mthd)
Expand Down

0 comments on commit efc5c37

Please sign in to comment.