Skip to content

Commit 58e0cb2

Browse files
authored
Fix the printing of RawPlutusData (#301)
* Fix the printing of RawPlutusData * Restore the automatic repr function
1 parent 54ec756 commit 58e0cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pycardano/plutus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ def __deepcopy__(self, memo):
781781
return self.__class__.from_cbor(self.to_cbor_hex())
782782

783783

784-
@dataclass(repr=False)
784+
@dataclass(repr=True)
785785
class RawPlutusData(CBORSerializable):
786786
data: CBORTag
787787

0 commit comments

Comments
 (0)