Skip to content

Commit f7603d2

Browse files
committed
Fix a typo
1 parent aca165c commit f7603d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/util/_decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def deprecate_nonkeyword_arguments(
239239

240240
def decorate(func):
241241
if allowed_args is None:
242-
spec = inspect.getfullargspec(func).args
242+
spec = inspect.getfullargspec(func)
243243
allow_args = spec.args[: -len(spec.defaults)]
244244
else:
245245
allow_args = allowed_args

0 commit comments

Comments
 (0)