style: fix linter errors

Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
Hiroshi Miura
2025-03-04 11:44:12 +09:00
parent 122377cb8a
commit ecc4e4e873
2 changed files with 3 additions and 1 deletions

View File

@@ -16,6 +16,7 @@ recursive-include tests *.json
recursive-include tests *.py
recursive-include tests *.xml
recursive-include tools *.py
prune ci
prune .github
exclude .gitignore
exclude .readthedocs.yml

View File

@@ -139,7 +139,8 @@ def test_helper_downloadBinary_sha256(tmp_path, monkeypatch):
expected = binascii.unhexlify("07b3ef4606b712923a14816b1cfe9649687e617d030fc50f948920d784c0b1cd")
out = tmp_path.joinpath("text.xml")
helper.downloadBinaryFile("http://example.com/test.xml", out, "sha256", expected, 60)
timeout = (Settings.connection_timeout, Settings.response_timeout)
helper.downloadBinaryFile("http://example.com/test.xml", out, "sha256", expected, timeout)
@pytest.mark.parametrize(