From ee12eebc3122ed288c6d729a7335f2f5188e595c Mon Sep 17 00:00:00 2001 From: rBazan98 Date: Sun, 19 Nov 2023 05:22:12 +0100 Subject: [PATCH] fix trailing whitespace --- svgpathtools/bezier.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/svgpathtools/bezier.py b/svgpathtools/bezier.py index 7349d24..4e6dccf 100644 --- a/svgpathtools/bezier.py +++ b/svgpathtools/bezier.py @@ -382,12 +382,11 @@ def quadratic_intersections(bez1, bez2): if root_2.imag==0 and root_2.real<=1 and root_2.real>=0: condition_2 = True# append in t2 - if condition_1 and condition_2: t1.append(root) t2.append(root_2) intersections.append(intersection) - + intersection_list = list(zip(t1,t2)) assert len(intersection_list)<=4