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