We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 59e88ab + ad60cd3 commit 40014feCopy full SHA for 40014fe
svgpath/path.py
@@ -1,6 +1,9 @@
1
from __future__ import division
2
from math import sqrt, cos, sin, acos, degrees, radians, log
3
-from collections import MutableSequence
+try:
4
+ from collections.abc import MutableSequence
5
+except ImportError:
6
+ from collections import MutableSequence
7
8
# This file contains classes for the different types of SVG path segments as
9
# well as a Path object that contains a sequence of path segments.
0 commit comments