Skip to content

Commit d434816

Browse files
committed
Fix type-hint
1 parent d6129de commit d434816

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/groupby/groupby.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2182,7 +2182,7 @@ def var(
21822182
@final
21832183
@Substitution(name="groupby")
21842184
@Appender(_common_see_also)
2185-
def sem(self, ddof: int = 1, numeric_only: bool | lib.no_default = lib.no_default):
2185+
def sem(self, ddof: int = 1, numeric_only: bool | lib.NoDefault = lib.no_default):
21862186
"""
21872187
Compute standard error of the mean of groups, excluding missing values.
21882188

0 commit comments

Comments
 (0)