mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:00:00 -04:00
Remove unneeded pylint: disable=import-error
Paths are now correctly set up for pylint.
This commit is contained in:
parent
a2cdf5d8cd
commit
d079305ba3
4 changed files with 1 additions and 10 deletions
|
|
@ -11,10 +11,7 @@
|
|||
|
||||
from collections import ChainMap
|
||||
|
||||
# pylint: disable=import-error
|
||||
from .autoconf import AC_VARS # type: ignore
|
||||
|
||||
# pylint: enable=import-error
|
||||
from .algorithms import ALG_VARS, CRYPTO_SUPPORTED_VARS
|
||||
from .basic import BASIC_VARS
|
||||
from .dirs import DIR_VARS
|
||||
|
|
|
|||
|
|
@ -11,11 +11,8 @@
|
|||
|
||||
import os
|
||||
|
||||
# pylint: disable=import-error
|
||||
from .autoconf import AC_VARS # type: ignore
|
||||
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
||||
BASIC_VARS = {
|
||||
"ARPANAME": f"{AC_VARS['TOP_BUILDDIR']}/bin/tools/arpaname",
|
||||
|
|
|
|||
|
|
@ -11,11 +11,8 @@
|
|||
|
||||
import os
|
||||
|
||||
# pylint: disable=import-error
|
||||
from .autoconf import AC_VARS # type: ignore
|
||||
|
||||
# pylint: enable=import-error
|
||||
|
||||
|
||||
SYSTEM_TEST_DIR_GIT_PATH = "bin/tests/system"
|
||||
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ import dns.query
|
|||
import dns.rdataclass
|
||||
import dns.rdatatype
|
||||
|
||||
import isctest.mark # pylint: disable=import-error
|
||||
import isctest.mark
|
||||
|
||||
pytestmark = pytest.mark.extra_artifacts(
|
||||
[
|
||||
|
|
|
|||
Loading…
Reference in a new issue