Skip to content

Commit 2cb9bf6

Browse files
mroeschkepandres
authored andcommitted
Fix typo in apply.py (pandas-dev#20058)
1 parent 063accc commit 2cb9bf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/apply.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def apply_broadcast(self, target):
191191

192192
for i, col in enumerate(target.columns):
193193
res = self.f(target[col])
194-
ares = np. asarray(res).ndim
194+
ares = np.asarray(res).ndim
195195

196196
# must be a scalar or 1d
197197
if ares > 1:

0 commit comments

Comments
 (0)