Skip to content

Commit

Permalink
Merge pull request #114 from KOSASIH/deepsource-transform-c6d8fadb
Browse files Browse the repository at this point in the history
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
  • Loading branch information
KOSASIH authored May 10, 2024
2 parents aaf3aad + 25e3030 commit 42761cb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion banking/bank.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from banking.transactions import pay_bill, transfer


def create_account(account_type, account_number):

"""
Creates a new bank account with the specified account type and account number.
"""
Expand All @@ -21,6 +21,7 @@ def create_account(account_type, account_number):
return account



def get_account(account_number):
"""
Retrieves the bank account with the specified account number.
Expand All @@ -47,6 +48,7 @@ def save_account(account):
save_account_data(account.account_number, account.type, account.balance)



def process_transaction(transaction):
"""
Processes the specified transaction by transferring funds between bank accounts or paying a bill.
Expand Down

0 comments on commit 42761cb

Please sign in to comment.