Remove unused imports

Generated with: ruff check --extend-select F401 --fix

(cherry picked from commit b00f16f026)
This commit is contained in:
Štěpán Balážik 2026-02-09 14:42:48 +01:00
parent af85bc2592
commit e5d5a6433c
9 changed files with 7 additions and 16 deletions

View file

@ -10,7 +10,6 @@
# information regarding copyright ownership.
from pathlib import Path
from typing import Dict, Optional
import logging
import textwrap

View file

@ -11,7 +11,6 @@
# pylint: disable=redefined-outer-name,unused-import
import os
import shutil
import time
@ -19,8 +18,8 @@ import dns
import dns.update
import pytest
from isctest.vars.algorithms import RSASHA1, Algorithm
from nsec3.common import NSEC3_MARK, check_nsec3_case, default_config
from isctest.vars.algorithms import Algorithm
from nsec3.common import NSEC3_MARK, check_nsec3_case
import isctest
import isctest.mark

View file

@ -18,7 +18,7 @@ import dns.update
import pytest
from isctest.vars.algorithms import RSASHA1, Algorithm
from nsec3.common import NSEC3_MARK, check_nsec3_case, default_config
from nsec3.common import NSEC3_MARK, check_nsec3_case
import isctest
import isctest.mark

View file

@ -12,7 +12,6 @@
# pylint: disable=redefined-outer-name,unused-import
import os
import shutil
import time
import dns
@ -20,7 +19,7 @@ import dns.update
import pytest
from isctest.vars.algorithms import RSASHA1, Algorithm
from nsec3.common import NSEC3_MARK, check_nsec3_case, default_config
from nsec3.common import NSEC3_MARK, check_nsec3_case
import isctest
import isctest.mark

View file

@ -11,12 +11,7 @@
# pylint: disable=redefined-outer-name,unused-import
import os
import shutil
import time
import dns
import pytest
from nsec3.common import NSEC3_MARK, check_nsec3_case

View file

@ -18,7 +18,7 @@ import dns.update
import pytest
from isctest.vars.algorithms import Algorithm
from nsec3.common import NSEC3_MARK, check_nsec3_case, check_nsec3param, default_config
from nsec3.common import NSEC3_MARK, check_nsec3_case, check_nsec3param
import isctest
import isctest.mark

View file

@ -14,11 +14,9 @@
from datetime import timedelta
import os
import shutil
import dns
import dns.update
import pytest
from isctest.vars.algorithms import RSASHA256
from nsec3.common import NSEC3_MARK, check_auth_nsec3, check_nsec3param

View file

@ -17,7 +17,6 @@ import os
import dns
import dns.update
import pytest
from isctest.kasp import Iret
from isctest.run import EnvCmd

View file

@ -92,6 +92,8 @@ target-version = "py310"
lint.select = [
# import order
"I",
# unused imports
"F401",
# sorted __all__
"RUF022",
# f-strings