Skip to content

Commit 00a9a70

Browse files
committed
QA
1 parent 29f99a2 commit 00a9a70

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pycardano/plutus.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,10 @@ def get_tag(constr_id: int) -> Optional[int]:
449449

450450

451451
def id_map(cls, skip_constructor=False):
452-
"""Constructs a unique representation of a PlutusData type definition. Intended for automatic constructor generation."""
452+
"""
453+
Constructs a unique representation of a PlutusData type definition.
454+
Intended for automatic constructor generation.
455+
"""
453456
if cls == bytes:
454457
return "bytes"
455458
if cls == int:

test/pycardano/test_plutus.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
Redeemer,
1919
RedeemerTag,
2020
plutus_script_hash,
21-
id_map, Datum,
21+
id_map,
22+
Datum,
2223
)
2324
from pycardano.serialization import IndefiniteList, RawCBOR
2425

0 commit comments

Comments
 (0)