Skip to content

Commit c232ef2

Browse files
authored
Please flake8
1 parent a283df8 commit c232ef2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/test_utils/test_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ def mocked_perform_api_call(call):
2121
def test_list_all(self):
2222
openml.utils._list_all(openml.tasks.functions._list_tasks)
2323

24-
@mock.patch('openml._api_calls._perform_api_call', side_effect=mocked_perform_api_call)
24+
@mock.patch('openml._api_calls._perform_api_call',
25+
side_effect=mocked_perform_api_call)
2526
def test_list_all_few_results_available(self, _perform_api_call):
2627
# we want to make sure that the number of api calls is only 1.
2728
# Although we have multiple versions of the iris dataset, there is only

0 commit comments

Comments
 (0)