From 63f400b61b5157deeb2042dade584c5fb65243b9 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Sun, 21 Jul 2024 03:38:50 +0000 Subject: [PATCH] style: format code with Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf This commit fixes the style issues introduced in 849c698 according to the output from Autopep8, Black, ClangFormat, dotnet-format, Go fmt, Gofumpt, Google Java Format, isort, Ktlint, PHP CS Fixer, Prettier, RuboCop, Ruff Formatter, Rustfmt, Scalafmt, StandardJS, StandardRB, swift-format and Yapf. Details: None --- .../sidra_chain_sdk/contracts/RiskAssessmentContract.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sidra_chain_integration/sidra_chain_sdk/contracts/RiskAssessmentContract.py b/sidra_chain_integration/sidra_chain_sdk/contracts/RiskAssessmentContract.py index 15322d34b..74732578c 100644 --- a/sidra_chain_integration/sidra_chain_sdk/contracts/RiskAssessmentContract.py +++ b/sidra_chain_integration/sidra_chain_sdk/contracts/RiskAssessmentContract.py @@ -1,11 +1,12 @@ from sidra_chain_sdk.contract import Contract + class RiskAssessmentContract(Contract): def __init__(self, network, api_key): super().__init__(network, api_key) - self.contract_address = '0x...' + self.contract_address = "0x..." def identify_risks(self, loan_application): # Call the identifyRisks function on the smart contract - response = self.call_function('identifyRisks', [loan_application]) + response = self.call_function("identifyRisks", [loan_application]) return response