Skip to content

Commit 52784b5

Browse files
committed
Fix typo in apply.py
1 parent 607910b commit 52784b5

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)