Skip to content

Commit 1f48e8d

Browse files
chenkasirerCopilot
andauthored
fixed typo
Co-authored-by: Copilot <[email protected]>
1 parent b43cc24 commit 1f48e8d

File tree

1 file changed

+1
-1
lines changed
  • src/compas_rhino/geometry/brep

1 file changed

+1
-1
lines changed

src/compas_rhino/geometry/brep/trim.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def __from_data__(cls, data, builder):
8080
try:
8181
iso_status = getattr(Rhino.Geometry.IsoStatus, data["iso"])
8282
except AttributeError:
83-
# due to discrepency in how IsoStatus.None looks like in Rhino7 vs Rhino8 (`IsoStatus.NONE`)
83+
# due to discrepancy in how IsoStatus.None looks like in Rhino7 vs Rhino8 (`IsoStatus.NONE`)
8484
iso_status = Rhino.Geometry.IsoStatus.NONE
8585
is_reversed = True if data["is_reversed"] == "true" else False
8686
instance.native_trim = builder.add_trim(curve, data["edge"], is_reversed, iso_status, data["start_vertex"])

0 commit comments

Comments
 (0)