Skip to content

Commit

Permalink
Merge pull request #116 from KOSASIH/deepsource-transform-17504961
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 7cc62f1 + f0a25d8 commit 8e2527f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions banking/transaction_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ def deposit(account_id: int, amount: float) -> bool:
"""



def withdraw(account_id: int, amount: float) -> bool:
"""
Withdraw an amount from an account.
Expand All @@ -28,7 +27,6 @@ def withdraw(account_id: int, amount: float) -> bool:
Returns:
bool: True if the withdrawal was successful, False otherwise.
"""
<


def transfer(from_account_id: int, to_account_id: int, amount: float) -> bool:
Expand All @@ -43,4 +41,3 @@ def transfer(from_account_id: int, to_account_id: int, amount: float) -> bool:
Returns:
bool: True if the transfer was successful, False otherwise.
"""

0 comments on commit 8e2527f

Please sign in to comment.