From 58e0cb25179f2f9f46a868dc0e34bf4c6876a503 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=BCndler?= Date: Sat, 17 Feb 2024 15:42:45 +0100 Subject: [PATCH] Fix the printing of RawPlutusData (#301) * Fix the printing of RawPlutusData * Restore the automatic repr function --- pycardano/plutus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycardano/plutus.py b/pycardano/plutus.py index 0172088b..9e080632 100644 --- a/pycardano/plutus.py +++ b/pycardano/plutus.py @@ -781,7 +781,7 @@ def __deepcopy__(self, memo): return self.__class__.from_cbor(self.to_cbor_hex()) -@dataclass(repr=False) +@dataclass(repr=True) class RawPlutusData(CBORSerializable): data: CBORTag