8000 Fix import format at pandas/tests/io/plotting directory by mwoss · Pull Request #24580 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

Fix import format at pandas/tests/io/plotting directory #24580

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 3 commits into from
Jan 4, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Skip converters import
  • Loading branch information
mwoss committed Jan 4, 2019
commit 6a740c818b043bd53ba17981e7fc81f917cfa06d
4 changes: 2 additions & 2 deletions pandas/tests/plotting/test_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
import pandas.core.config as cf
import pandas.util.testing as tm

from pandas.plotting import (
deregister_matplotlib_converters, register_matplotlib_converters)
from pandas.tseries.offsets import Day, Micro, Milli, Second

converter = pytest.importorskip('pandas.plotting._converter')
from pandas.plotting import (deregister_matplotlib_converters, # isort:skip
register_matplotlib_converters)


def test_timtetonum_accepts_unicode():
Expand Down
0