We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0ae375 commit dafe5e1Copy full SHA for dafe5e1
pandas/io/formats/style.py
@@ -2,7 +2,11 @@
2
Module for applying conditional formatting to
3
DataFrames and Series.
4
"""
5
-from collections import MutableMapping, defaultdict
+try:
6
+ from collections.abc import MutableMapping
7
+except ImportError:
8
+ from collections import MutableMapping
9
+from collections import defaultdict
10
from contextlib import contextmanager
11
import copy
12
from functools import partial
0 commit comments