Skip to content

Commit 4209754

Browse files
authored
Typo fixup
1 parent eb1c1eb commit 4209754

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/frame/test_analytics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ def var(x):
739739
return np.var(x, ddof=1)
740740

741741
def std(x):
742-
return x: np.std(x, ddof=1)
742+
return np.std(x, ddof=1)
743743

744744
def sem(x):
745745
return np.std(x, ddof=1) / np.sqrt(len(x))

0 commit comments

Comments
 (0)