Skip to content

Run isort at pandas/tests/io #24532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Jan 2, 2019
6 changes: 5 additions & 1 deletion pandas/io/formats/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
Module for applying conditional formatting to
DataFrames and Series.
"""
from collections import MutableMapping, defaultdict
try:
from collections.abc import MutableMapping
except ImportError:
from collections import MutableMapping
from collections import defaultdict
from contextlib import contextmanager
import copy
from functools import partial
Expand Down