disable pylint no-member for x-version

This commit is contained in:
Erica Portnoy 2018-10-31 17:33:39 -07:00
parent 2ddf47e3cc
commit 594fbe3ae8

View file

@ -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):