Skip to content

Commit

Permalink
fix type check in deserialization of tx witness (#414) (#415)
Browse files Browse the repository at this point in the history
  • Loading branch information
nullhashpixel authored Jan 4, 2025
1 parent 6078263 commit 1abada7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycardano/witness.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def __post_init__(self):
self.vkey = self.vkey.to_non_extended()

@classmethod
@limit_primitive_type(list)
@limit_primitive_type(list, tuple)
def from_primitive(
cls: Type[VerificationKeyWitness], values: Union[list, tuple]
) -> VerificationKeyWitness:
Expand Down

0 comments on commit 1abada7

Please sign in to comment.