typo, import · pandas-dev/pandas@95d5cbf (original) (raw)

2 files changed

lines changed

Original file line number Diff line number Diff line change
@@ -787,7 +787,7 @@ def _maybe_convert(arr):
787 787 # We catch all regular exceptions here, and fall back
788 788 # to an ndarray.
789 789 try:
790 -res = self._from_sequnce(arr)
790 +res = self._from_sequence(arr)
791 791 except Exception:
792 792 res = np.asarray(arr)
793 793 else:
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
8 8
9 9 from pandas.tests.extension import base
10 10
11 -from .array import DecimalDtype, DecimalArray, make_data
11 +from .array import DecimalDtype, DecimalArray, make_data, to_decimal
12 12
13 13
14 14 @pytest.fixture