Skip to content

Commit 2209202

Browse files
committed
move the imports to the correct place
1 parent 6174356 commit 2209202

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

pandas/io/msgpack/__init__.py

+5-6
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
from collections import namedtuple
44

5-
from pandas.io.msgpack._unpacker import ( # noqa: F401,E402 isort:skip
6-
Unpacker,
7-
unpack,
8-
unpackb,
9-
)
10-
115
from pandas.io.msgpack.exceptions import * # noqa: F401,F403 isort:skip
126
from pandas.io.msgpack._version import version # noqa: F401 isort:skip
137

@@ -27,6 +21,11 @@ def __new__(cls, code, data):
2721

2822
import os # noqa: F401,E402 isort:skip
2923

24+
from pandas.io.msgpack._unpacker import ( # noqa: F401,E402 isort:skip
25+
Unpacker,
26+
unpack,
27+
unpackb,
28+
)
3029
from pandas.io.msgpack._packer import Packer # noqa: E402 isort:skip
3130

3231

0 commit comments

Comments
 (0)