Skip to content

Commit

Permalink
Fix collections deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsewell committed Sep 3, 2020
1 parent 6bf001e commit 147a490
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scss/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
from __future__ import print_function
from __future__ import unicode_literals

from collections import Iterable
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable
import colorsys
from fractions import Fraction
import operator
Expand Down

0 comments on commit 147a490

Please sign in to comment.