diff options
-rw-r--r-- | igor.py | 2 | ||||
-rw-r--r-- | requirements/dev.pip | 4 |
2 files changed, 3 insertions, 3 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]) diff --git a/requirements/dev.pip b/requirements/dev.pip index 13a80b9f..0f64609d 100644 --- a/requirements/dev.pip +++ b/requirements/dev.pip @@ -15,8 +15,8 @@ tox # for linting. greenlet==0.4.16 -astroid==2.5 -pylint==2.7.1 +astroid==2.5.3 +pylint==2.7.4 check-manifest==0.46 readme_renderer==26.0 |