Skip to content

Commit 17f8172

Browse files
committed
Reverting changes
1 parent c6cddf3 commit 17f8172

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pandas/core/reshape/concat.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@
22
concat routines
33
"""
44

5+
import numpy as np
6+
57
from pandas import (
6-
DataFrame, Index, MultiIndex, Series, compat, concat as _concat, np)
8+
DataFrame, Index, MultiIndex, Series, compat, concat as _concat)
79
from pandas.core import common as com
810
from pandas.core.arrays.categorical import (
911
_factorize_from_iterable, _factorize_from_iterables)

pandas/core/reshape/tile.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"""
44
from functools import partial
55

6+
import numpy as np
7+
68
from pandas._libs.lib import infer_dtype
79

810
from pandas.core.dtypes.common import (
@@ -12,7 +14,7 @@
1214

1315
from pandas import (
1416
Categorical, Index, Interval, IntervalIndex, Series, Timedelta, Timestamp,
15-
isna, np, to_datetime, to_timedelta)
17+
isna, to_datetime, to_timedelta)
1618
import pandas.core.algorithms as algos
1719
import pandas.core.nanops as nanops
1820

0 commit comments

Comments
 (0)