We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3672287 commit 5f7ad4dCopy full SHA for 5f7ad4d
PyFunceble/query/dns/query_tool.py
@@ -50,6 +50,8 @@
50
limitations under the License.
51
"""
52
53
+# pylint: disable=too-many-lines
54
+
55
import copy
56
import functools
57
import ipaddress
tests/query/dnss/test_query_tool.py
@@ -763,6 +763,7 @@ def test_guess_and_set_delay_less_than_zero(self) -> None:
763
config_loader = ConfigLoader()
764
config_loader.set_custom_config({"dns": {"delay": -3.0}}).start()
765
766
+ # pylint: disable=unnecessary-lambda
767
self.assertRaises(ValueError, lambda: self.query_tool.guess_and_set_delay())
768
769
def test_guess_and_set_delay_none(self) -> None:
0 commit comments