Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Commit

Permalink
fix black indent
Browse files Browse the repository at this point in the history
  • Loading branch information
Benzbeeb committed Mar 9, 2021
1 parent b0c19e8 commit ce887c8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions helpers/pyband/pyband/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,4 @@ def get_reference_data(self, pairs: List[str], min_count: int, ask_count: int) -

def get_request_evm_proof_by_request_id(self, request_id: int) -> EVMProof:
data = self._get_result("/oracle/proof/{}".format(request_id))
return EVMProof(
json_proof=data["jsonProof"],
evm_proof_bytes=HexBytes(bytes.fromhex(data["evmProofBytes"])),
)
return EVMProof(json_proof=data["jsonProof"], evm_proof_bytes=HexBytes(bytes.fromhex(data["evmProofBytes"])))

0 comments on commit ce887c8

Please sign in to comment.