Skip to content

Commit 88cbf1f

Browse files
committed
fix single-line correction
1 parent 930888b commit 88cbf1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openglider/lines/knots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def get(self, lower_type: LineType, upper_type: LineType, upper_num: int) -> lis
104104
raise Exception(f"whooot {lower_type} and {upper_type} with {upper_num} top")
105105

106106
if upper_num == 1:
107-
return [first]
107+
return [first*0.001]
108108

109109
values = [(first + index * (last-first) / (upper_num-1)) * 0.001 for index in range(upper_num)]
110110
x=1

0 commit comments

Comments
 (0)