Skip to content

Commit

Permalink
delete unused line
Browse files Browse the repository at this point in the history
  • Loading branch information
mathandy committed Jul 9, 2022
1 parent 73c887a commit d8a6e5e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion svgpathtools/path.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d8a6e5e

Please sign in to comment.