Skip to content

Commit 930a7f8

Browse files
TYP/CLN: rogue type comment not caught by code checks (#33763)
1 parent 1a82659 commit 930a7f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/compat/numpy/function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def validate_argsort_with_ascending(ascending, args, kwargs):
157157
return ascending
158158

159159

160-
CLIP_DEFAULTS = dict(out=None) # type Dict[str, Any]
160+
CLIP_DEFAULTS: Dict[str, Any] = dict(out=None)
161161
validate_clip = CompatValidator(
162162
CLIP_DEFAULTS, fname="clip", method="both", max_fname_arg_count=3
163163
)

0 commit comments

Comments
 (0)