diff --git a/banking/transaction_processing.py b/banking/transaction_processing.py index 713f5c3a3..c377881d0 100644 --- a/banking/transaction_processing.py +++ b/banking/transaction_processing.py @@ -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. @@ -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: @@ -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. """ -