Skip to content

Commit

Permalink
Fixed editor
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger committed Apr 25, 2018
1 parent 1a4d987 commit fc729d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3217,7 +3217,7 @@ def _reindex_indexer(self, new_index, indexer, copy):
return self

new_values = algorithms.take_1d(self._values, indexer,
allow_fillTrue, fill_value=None)
allow_fill=True, fill_value=None)
return self._constructor(new_values, index=new_index)

def _needs_reindex_multi(self, axes, method, level):
Expand Down

0 comments on commit fc729d6

Please sign in to comment.