Skip to content

Commit

Permalink
style: format code with Autopep8, Black, ClangFormat, dotnet-format, …
Browse files Browse the repository at this point in the history
…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
  • Loading branch information
deepsource-autofix[bot] authored Jul 21, 2024
1 parent 849c698 commit 63f400b
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 63f400b

Please sign in to comment.