Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion vector/base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
import operator
from contextlib import contextmanager
from collections import Iterable
try:
# since python 3.10
from collections.abc import Iterable
except ImportError:
from collections import Iterable

class View:
def draw(self, object, offset=None, **kw):
Expand Down
6 changes: 5 additions & 1 deletion vector/svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
from contextlib import contextmanager
from . import base
from math import sin, cos, radians
from collections import Iterable
try:
# since python 3.10
from collections.abc import Iterable
except ImportError:
from collections import Iterable
from urllib.parse import urlunparse, ParseResult
import operator
from textwrap import TextWrapper
Expand Down