We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb597eb commit 6e85276Copy full SHA for 6e85276
CHANGELOG.md
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
12
### Changed
13
14
+* Fixed bug in `compas.geometry.curves.curve.Curve.reversed` by adding missing parenthesis.
15
+
16
### Removed
17
18
src/compas/geometry/curves/curve.py
@@ -462,7 +462,7 @@ def reversed(self):
462
463
"""
464
copy = self.copy()
465
- copy.reverse
+ copy.reverse()
466
return copy
467
468
# def space(self, n=10):
0 commit comments