Skip to content

Commit

Permalink
Fix formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kieransimkin authored and cffls committed Oct 17, 2024
1 parent 0608770 commit da3c8f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pycardano/backend/blockfrost.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def evaluate_tx_cbor(self, cbor: Union[bytes, str]) -> Dict[str, ExecutionUnits]
cbor = cbor.hex()
with tempfile.NamedTemporaryFile(delete=False, mode="w") as f:
f.write(cbor)

result = self.api.transaction_evaluate(f.name)
os.remove(f.name)
if not hasattr(result, "result"):
Expand Down

0 comments on commit da3c8f6

Please sign in to comment.