Fix linter error

This commit is contained in:
Hsiao-Wei Wang 2024-07-08 21:52:52 +08:00 committed by Potuz
parent 0e94fc956b
commit 93aa7d6bee

View File

@ -35,7 +35,7 @@ def get_generalized_index(ssz_class: Any, *path: PyUnion[int, SSZVariableName])
def compute_merkle_proof(object: SSZObject,
index: GeneralizedIndex) -> Sequence[Bytes32]:
index: GeneralizedIndex) -> list[Bytes32]:
return build_proof(object.get_backing(), index)'''