diff --git a/ihatemoney/tests/budget_test.py b/ihatemoney/tests/budget_test.py index 8c165797..e3b6778f 100644 --- a/ihatemoney/tests/budget_test.py +++ b/ihatemoney/tests/budget_test.py @@ -1661,7 +1661,9 @@ class BudgetTestCase(IhatemoneyTestCase): # And switch project to no currency: amount should be equal to what was submitted project.switch_currency(converter.no_currency) - no_currency_bills = [(bill.amount, bill.converted_amount) for bill in project.get_bills()] + no_currency_bills = [ + (bill.amount, bill.converted_amount) for bill in project.get_bills() + ] assert no_currency_bills == [(5.0, 5.0), (10.0, 10.0)]