mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
disable pylint no-member for x-version
This commit is contained in:
parent
2ddf47e3cc
commit
594fbe3ae8
1 changed files with 2 additions and 2 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue