Skip to content

Commit

Permalink
Add support to Python 3.10
Browse files Browse the repository at this point in the history
Python 3.10 removed the aliases to collections.abc from the collections
module. See [1] for reference.

* Closes Kronuz#422

[1] https://docs.python.org/3/whatsnew/3.10.html#removed

Signed-off-by: Athos Ribeiro <[email protected]>
  • Loading branch information
athos-ribeiro committed Nov 9, 2021
1 parent 6bf001e commit 0c66517
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scss/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from __future__ import print_function
from __future__ import unicode_literals

from collections import Iterable
from collections.abc import Iterable
import colorsys
from fractions import Fraction
import operator
Expand Down

0 comments on commit 0c66517

Please sign in to comment.