diff --git a/tests/test_spend_bundle.py b/tests/test_spend_bundle.py index 14d324b5..5672ee95 100644 --- a/tests/test_spend_bundle.py +++ b/tests/test_spend_bundle.py @@ -1,3 +1,4 @@ +from typing import Any from chia_rs import SpendBundle import pytest @@ -196,7 +197,7 @@ ], ) def test_spend_bundle( - ty: type, input_file: str, expected_add: str, expected_rem: str + ty: type[Any], input_file: str, expected_add: str, expected_rem: str ) -> None: buf = open(f"test-bundles/{input_file}.bundle", "rb").read() bundle = ty.from_bytes(buf)