summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-02-26 12:01:45 -0500
committerNed Batchelder <ned@nedbatchelder.com>2021-02-26 12:01:45 -0500
commitf3338803b7b8b4cda34270c4fbf951ad74913980 (patch)
treec94614f6c4b0eb036430135c885b0089c60f3718 /igor.py
parent198a11535b5065416c41e7fdc025718c1a92eff3 (diff)
downloadpython-coveragepy-git-f3338803b7b8b4cda34270c4fbf951ad74913980.tar.gz
build: update to latest pylint
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py2
1 files changed, 1 insertions, 1 deletions
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])