Skip to content

Commit

Permalink
missing call parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Jun 27, 2024
1 parent eb597eb commit 6e85276
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

* Fixed bug in `compas.geometry.curves.curve.Curve.reversed` by adding missing parenthesis.

### Removed


Expand Down
2 changes: 1 addition & 1 deletion src/compas/geometry/curves/curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def reversed(self):
"""
copy = self.copy()
copy.reverse
copy.reverse()
return copy

# def space(self, n=10):
Expand Down

0 comments on commit 6e85276

Please sign in to comment.