Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit 39cb82d

Browse files
Lint
1 parent 47208a7 commit 39cb82d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

billing/tests/test_accounts.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import unittest
22
from billing.accounts import BankAccount
33

4+
45
class TestBankAccount(unittest.TestCase):
56
def setUp(self):
67
self.account = BankAccount("John Doe", 100.0)
@@ -54,5 +55,6 @@ def test_get_balance(self):
5455
self.account.withdraw(30.0)
5556
self.assertEqual(self.account.get_balance(), 120.0)
5657

57-
if __name__ == '__main__':
58-
unittest.main()
58+
59+
if __name__ == "__main__":
60+
unittest.main()

0 commit comments

Comments
 (0)