Accommodate black 24.2.0

This commit is contained in:
Michal Nowak
2024-02-13 16:48:31 +01:00
parent 9279a1038b
commit 70163a8b3f
4 changed files with 18 additions and 20 deletions

View File

@@ -312,9 +312,11 @@ def dspublished_tests(checkds, addr):
CheckDSTest(
zone=f"bad.{checkds}.dspublish.ns6",
logs_to_wait_for=(
"bad DS response from 10.53.0.6"
if checkds == "explicit"
else "error during parental-agents processing",
(
"bad DS response from 10.53.0.6"
if checkds == "explicit"
else "error during parental-agents processing"
),
),
expected_parent_state="!DSPublish",
),
@@ -394,9 +396,11 @@ def dswithdrawn_tests(checkds, addr):
CheckDSTest(
zone=f"bad.{checkds}.dsremoved.ns6",
logs_to_wait_for=(
"bad DS response from 10.53.0.6"
if checkds == "explicit"
else "error during parental-agents processing",
(
"bad DS response from 10.53.0.6"
if checkds == "explicit"
else "error during parental-agents processing"
),
),
expected_parent_state="!DSRemoved",
),

View File

@@ -27,7 +27,6 @@ class NamedPorts(NamedTuple):
class NamedInstance:
"""
A class representing a `named` instance used in a system test.

View File

@@ -57,7 +57,6 @@ class LogFile:
class WatchLog(abc.ABC):
"""
Wait for a log message to appear in a text file.
@@ -294,19 +293,18 @@ class WatchLogFromHere(WatchLog):
# pylint: disable=too-few-public-methods
class RNDCExecutor(abc.ABC):
"""
An interface which RNDC executors have to implement in order for the
`NamedInstance` class to be able to use them.
"""
@overload
def call(self, ip: str, port: int, command: str, timeout: int = 10) -> str:
...
def call(self, ip: str, port: int, command: str, timeout: int = 10) -> str: ...
@overload
def call(self, ip: str, port: int, command: List[str], timeout: int = 10) -> str:
...
def call(
self, ip: str, port: int, command: List[str], timeout: int = 10
) -> str: ...
@abc.abstractmethod
def call(
@@ -326,7 +324,6 @@ class RNDCException(Exception):
class RNDCBinaryExecutor(RNDCExecutor):
"""
An `RNDCExecutor` which sends RNDC commands to servers using the `rndc`
binary.
@@ -342,12 +339,12 @@ class RNDCBinaryExecutor(RNDCExecutor):
self._base_cmdline = [rndc_path, "-c", rndc_conf]
@overload
def call(self, ip: str, port: int, command: str, timeout: int = 10) -> str:
...
def call(self, ip: str, port: int, command: str, timeout: int = 10) -> str: ...
@overload
def call(self, ip: str, port: int, command: List[str], timeout: int = 10) -> str:
...
def call(
self, ip: str, port: int, command: List[str], timeout: int = 10
) -> str: ...
def call(
self, ip: str, port: int, command: Union[str, List[str]], timeout: int = 10

View File

@@ -16,7 +16,6 @@ import subprocess
# pylint: disable=too-few-public-methods
class RNDCExecutor(abc.ABC):
"""
An interface which RNDC executors have to implement in order for the
`NamedInstance` class to be able to use them.
@@ -38,7 +37,6 @@ class RNDCException(Exception):
class RNDCBinaryExecutor(RNDCExecutor):
"""
An `RNDCExecutor` which sends RNDC commands to servers using the `rndc`
binary.