From b714ff872d9257cf0cf512827d2deb5b95ee3078 Mon Sep 17 00:00:00 2001 From: Andy Port Date: Fri, 19 Jun 2020 20:21:28 -0700 Subject: [PATCH] add Path.attributes and Path.meta attributes --- svgpathtools/path.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/svgpathtools/path.py b/svgpathtools/path.py index 1faa8f0..de117a1 100644 --- a/svgpathtools/path.py +++ b/svgpathtools/path.py @@ -2199,6 +2199,8 @@ class Path(MutableSequence): _closed = False _start = None _end = None + attributes = None + meta = None # meant as container for storage of arbitrary meta data def __init__(self, *segments, **kw): self._segments = list(segments)