Skip to content

Commit f755cf7

Browse files
Update bank_account.py
1 parent 94365ef commit f755cf7

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python-function-names/bank_account.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@ def __init__(self, account_number, balance):
44
self.balance = balance
55

66
def __repr__(self):
7-
return (
8-
f"{type(self).__name__}({self.account_number}, {self.balance})"
9-
)
7+
return f"{type(self).__name__}({self.account_number}, {self.balance})"
108

119
def _verify_funds(self, amount):
1210
return self.balance >= amount

0 commit comments

Comments
 (0)