File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 11
11
from pandas .compat import raise_with_traceback
12
12
from pandas .compat ._optional import import_optional_dependency
13
13
from pandas .errors import AbstractMethodError , EmptyDataError
14
+ from pandas .util ._decorators import deprecate_nonkeyword_arguments
14
15
15
16
from pandas .core .dtypes .common import is_list_like
16
17
20
21
from pandas .io .formats .printing import pprint_thing
21
22
from pandas .io .parsers import TextParser
22
23
23
- from pandas .util ._decorators import deprecate_nonkeyword_arguments
24
-
25
24
_IMPORTS = False
26
25
_HAS_BS4 = False
27
26
_HAS_LXML = False
Original file line number Diff line number Diff line change 7
7
import pandas ._libs .json as json
8
8
from pandas ._libs .tslibs import iNaT
9
9
from pandas .errors import AbstractMethodError
10
+ from pandas .util ._decorators import deprecate_nonkeyword_arguments
10
11
11
12
from pandas .core .dtypes .common import ensure_str , is_period_dtype
12
13
23
24
from pandas .io .formats .printing import pprint_thing
24
25
from pandas .io .parsers import _validate_integer
25
26
26
- from pandas .util ._decorators import deprecate_nonkeyword_arguments
27
-
28
27
from ._normalize import convert_to_line_delimits
29
28
from ._table_schema import build_table_schema , parse_table_schema
30
29
You can’t perform that action at this time.
0 commit comments