Skip to content

Commit

Permalink
Update css.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Hrabal committed Mar 11, 2021
1 parent 968dac3 commit 743ef19
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tempy/css.py
Expand Up @@ -2,7 +2,10 @@
# @author: Federico Cerchiari <federicocerchiari@gmail.com>
"""Classes for css management"""
import inspect
from collections import Iterable, ChainMap
try:
from collections import Iterable, ChainMap
except ImportError:
from collections.abc import Iterable, ChainMap

from .elements import Tag
from .tempy import DOMElement
Expand Down

0 comments on commit 743ef19

Please sign in to comment.