Skip to content

Commit b531e56

Browse files
committed
Formatting
1 parent d196ae4 commit b531e56

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pycardano/txbuilder.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -952,11 +952,13 @@ def build(
952952
requested_amount = Value()
953953
for o in self.outputs:
954954
requested_amount += o.amount
955-
955+
956956
for pid, m in self.mint.items():
957957
for tkn, am in m.items():
958958
if am < 0:
959-
requested_amount += Value(multi_asset=MultiAsset({pid: Asset({tkn: -am})}))
959+
requested_amount += Value(
960+
multi_asset=MultiAsset({pid: Asset({tkn: -am})})
961+
)
960962

961963
# Include min fees associated as part of requested amount
962964
requested_amount += self._estimate_fee()

0 commit comments

Comments
 (0)