From f3338803b7b8b4cda34270c4fbf951ad74913980 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Fri, 26 Feb 2021 12:01:45 -0500 Subject: build: update to latest pylint --- igor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'igor.py') diff --git a/igor.py b/igor.py index a4a460c0..3c6afa66 100644 --- a/igor.py +++ b/igor.py @@ -387,7 +387,7 @@ def analyze_args(function): getargspec = inspect.getargspec with ignore_warnings(): # DeprecationWarning: Use inspect.signature() instead of inspect.getfullargspec() - argspec = getargspec(function) + argspec = getargspec(function) # pylint: disable=deprecated-method return bool(argspec[1]), len(argspec[0]) -- cgit v1.2.1