Skip to content

Commit

Permalink
Fix typo in apply.py (pandas-dev#20058)
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke authored and jreback committed Mar 9, 2018
1 parent cc1b934 commit 731d971
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/core/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def apply_broadcast(self, target):

for i, col in enumerate(target.columns):
res = self.f(target[col])
ares = np. asarray(res).ndim
ares = np.asarray(res).ndim

# must be a scalar or 1d
if ares > 1:
Expand Down

0 comments on commit 731d971

Please sign in to comment.