Skip to content

Commit 6e85276

Browse files
committed
missing call parenthesis
1 parent eb597eb commit 6e85276

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
### Changed
1313

14+
* Fixed bug in `compas.geometry.curves.curve.Curve.reversed` by adding missing parenthesis.
15+
1416
### Removed
1517

1618

src/compas/geometry/curves/curve.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def reversed(self):
462462
463463
"""
464464
copy = self.copy()
465-
copy.reverse
465+
copy.reverse()
466466
return copy
467467

468468
# def space(self, n=10):

0 commit comments

Comments
 (0)