Skip to content

Commit

Permalink
typo, import
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Oct 4, 2018
1 parent 4e9b7f0 commit 95d5cbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pandas/core/arrays/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def _maybe_convert(arr):
# We catch all regular exceptions here, and fall back
# to an ndarray.
try:
res = self._from_sequnce(arr)
res = self._from_sequence(arr)
except Exception:
res = np.asarray(arr)
else:
Expand Down
2 changes: 1 addition & 1 deletion pandas/tests/extension/decimal/test_decimal.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from pandas.tests.extension import base

from .array import DecimalDtype, DecimalArray, make_data
from .array import DecimalDtype, DecimalArray, make_data, to_decimal


@pytest.fixture
Expand Down

0 comments on commit 95d5cbf

Please sign in to comment.