Skip to content

Commit 95d5cbf

Browse files
committed
typo, import
1 parent 4e9b7f0 commit 95d5cbf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: pandas/core/arrays/base.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -787,7 +787,7 @@ def _maybe_convert(arr):
787787
# We catch all regular exceptions here, and fall back
788788
# to an ndarray.
789789
try:
790-
res = self._from_sequnce(arr)
790+
res = self._from_sequence(arr)
791791
except Exception:
792792
res = np.asarray(arr)
793793
else:

Diff for: pandas/tests/extension/decimal/test_decimal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
from pandas.tests.extension import base
1010

11-
from .array import DecimalDtype, DecimalArray, make_data
11+
from .array import DecimalDtype, DecimalArray, make_data, to_decimal
1212

1313

1414
@pytest.fixture

0 commit comments

Comments
 (0)