diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-11 20:59:58 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-04-11 20:59:58 -0400 |
commit | 84a9b5f2b93e3010428963c35953b425b2d8019f (patch) | |
tree | 94b5c8890291a59be22a42df72b9acd0d757ee82 /igor.py | |
parent | 3cd4db3248fe48c3a531855227a9b2a3846e0110 (diff) | |
download | python-coveragepy-git-84a9b5f2b93e3010428963c35953b425b2d8019f.tar.gz |
build: update pylint
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) # pylint: disable=deprecated-method + argspec = getargspec(function) return bool(argspec[1]), len(argspec[0]) |