summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
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 3c6afa66..a4a460c0 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) # pylint: disable=deprecated-method
+ argspec = getargspec(function)
return bool(argspec[1]), len(argspec[0])