diff --git a/kyu_5/flatten/test_flatten.py b/kyu_5/flatten/test_flatten.py index 40977355bf6..13fb23d2cd7 100644 --- a/kyu_5/flatten/test_flatten.py +++ b/kyu_5/flatten/test_flatten.py @@ -90,4 +90,5 @@ def test_flatten(self): with allure.step("Enter test data #5 and verify the output"): expected = ['hello', 2, 'text', 4, 5, '[list]'] print_log(args=(['hello', 2, ['text', [4, 5]]], [[]], '[list]'), expected=expected) - self.assertListEqual(expected, flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]')) + self.assertListEqual(expected, + flatten(['hello', 2, ['text', [4, 5]]], [[]], '[list]'))