mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
Fix lint by telling pylint it cannot be trusted
This commit is contained in:
parent
4d89718930
commit
46c344e92c
1 changed files with 8 additions and 0 deletions
|
|
@ -12,6 +12,14 @@ import dns.tsigkeyring
|
|||
import dns.update
|
||||
import zope.interface
|
||||
|
||||
# pylint raises nearly a dozen "no-member" errors about various attributes in
|
||||
# dnspython. I verified all attributes it is erroring about do exist and that
|
||||
# the problem still exists in the latest version of pylint which as of writing
|
||||
# this is 2.6.0. Instead of disabling all of these errors inline now and in the
|
||||
# future, let's just disable this check in this file while pylint is unable to
|
||||
# properly parse dnspython.
|
||||
# pylint: disable=no-member
|
||||
|
||||
from certbot import errors
|
||||
from certbot import interfaces
|
||||
from certbot.plugins import dns_common
|
||||
|
|
|
|||
Loading…
Reference in a new issue