Skip to content

Commit

Permalink
Typo fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel authored Jan 25, 2019
1 parent eb1c1eb commit 4209754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pandas/tests/frame/test_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ def var(x):
return np.var(x, ddof=1)

def std(x):
return x: np.std(x, ddof=1)
return np.std(x, ddof=1)

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

0 comments on commit 4209754

Please sign in to comment.