From f3bc1066c58b9b1ae189742fc4b1d31b39a023fe Mon Sep 17 00:00:00 2001 From: Glandos Date: Mon, 5 Jul 2021 23:02:43 +0200 Subject: [PATCH] format --- ihatemoney/tests/budget_test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)]