diff options
| -rw-r--r-- | pyramid/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyramid/compat.py b/pyramid/compat.py index 5909debf2..c49ea1e73 100644 --- a/pyramid/compat.py +++ b/pyramid/compat.py @@ -245,7 +245,7 @@ def is_bound_method(ob): return inspect.ismethod(ob) and getattr(ob, im_self, None) is not None # support annotations and keyword-only arguments in PY3 -if PY3: +if PY3: # pragma: no cover from inspect import getfullargspec as getargspec else: from inspect import getargspec |
