From 8df1373181aef362a5d60699d050cb2c6c7ca556 Mon Sep 17 00:00:00 2001 From: ProjectsSven Date: Mon, 27 Oct 2025 21:35:16 +0100 Subject: [PATCH] fix: import collections fixes: #16 --- PathTracer/path/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PathTracer/path/path.py b/PathTracer/path/path.py index 02a186a..b6727b3 100644 --- a/PathTracer/path/path.py +++ b/PathTracer/path/path.py @@ -1,6 +1,6 @@ from __future__ import division from math import sqrt, cos, sin, acos, degrees, radians, log -from collections import MutableSequence +from collections.abc import MutableSequence from bisect import bisect # This file contains classes for the different types of SVG path segments as