From 594fbe3ae8cb4a81032cb85884dabe36dcccffeb Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Wed, 31 Oct 2018 17:33:39 -0700 Subject: [PATCH] disable pylint no-member for x-version --- certbot/tests/display/util_test.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/certbot/tests/display/util_test.py b/certbot/tests/display/util_test.py index f7d1a8a37..36ea91027 100644 --- a/certbot/tests/display/util_test.py +++ b/certbot/tests/display/util_test.py @@ -17,9 +17,9 @@ TAGS = ["tag1", "tag2", "tag3"] TAGS_CHOICES = [("1", "tag1"), ("2", "tag2"), ("3", "tag3")] if six.PY2: - getargspec = inspect.getargspec + getargspec = inspect.getargspec # pylint:disable=no-member else: - getargspec = inspect.getfullargspec + getargspec = inspect.getfullargspec # pylint:disable=no-member class InputWithTimeoutTest(unittest.TestCase):