delete unused line

issue-171
Andrew Port 2022-07-09 19:30:40 -03:00
parent 73c887a8a3
commit d8a6e5e509
1 changed files with 0 additions and 1 deletions

View File

@ -189,7 +189,6 @@ def bez2poly(bez, numpy_ordering=True, return_poly1d=False):
def transform_segments_together(path, transformation):
"""Makes sure that, if joints were continuous, they're kept that way."""
transformed_segs = [transformation(seg) for seg in path]
joint_was_continuous = [sa.end == sb.start for sa, sb in path.joints()]
for i, (sa, sb) in enumerate(path.joints()):
if sa.end == sb.start: