Skip to content

Commit 21ccb1f

Browse files
Lint
1 parent 274f131 commit 21ccb1f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

yaramo/node.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,7 @@ def get_rad_between_nodes(geo_node_a: GeoNode, geo_node_b: GeoNode) -> float:
178178
# left turn more than (or almost) 90°
179179
continue
180180

181-
right_angle_abs = get_rad_between_nodes(
182-
self.geo_node, right.get_next_geo_node(self)
183-
)
181+
right_angle_abs = get_rad_between_nodes(self.geo_node, right.get_next_geo_node(self))
184182
right_angle_rel = right_angle_abs - head_angle_abs
185183
if cos(right_angle_rel) <= almost_zero:
186184
# right turn more than (or almost) 90°

0 commit comments

Comments
 (0)