Skip to content

Commit 9d8b058

Browse files
committed
lint
1 parent e7318df commit 9d8b058

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/compas_occ/geometry/curves/nurbs.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,7 @@ class OCCNurbsCurve(OCCCurve, NurbsCurve):
9191
>>> from compas.geometry import Point
9292
>>> from compas_occ.geometry import OCCNurbsCurve
9393
>>> points = [Point(0, 0, 0), Point(3, 6, 0), Point(6, -3, 3), Point(10, 0, 0)]
94-
>>> curve = OCCNurbsCurve.from_parameters(
95-
... points=points, weights=[1.0, 1.0, 1.0, 1.0], knots=[0.0, 1.0], multiplicities=[4, 4], degree=3
96-
... )
94+
>>> curve = OCCNurbsCurve.from_parameters(points=points, weights=[1.0, 1.0, 1.0, 1.0], knots=[0.0, 1.0], multiplicities=[4, 4], degree=3)
9795
9896
"""
9997

0 commit comments

Comments
 (0)