From ce887c887799e5a84b4564a40102302a677af08c Mon Sep 17 00:00:00 2001 From: Nattharat Wiriyakulnan Date: Tue, 9 Mar 2021 16:14:16 +0700 Subject: [PATCH] fix black indent --- helpers/pyband/pyband/client.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/helpers/pyband/pyband/client.py b/helpers/pyband/pyband/client.py index 18a266f474..fb8c4c8831 100644 --- a/helpers/pyband/pyband/client.py +++ b/helpers/pyband/pyband/client.py @@ -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"])))