Skip to content

Commit 3ec025c

Browse files
committed
fix lint error
1 parent 0de470d commit 3ec025c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/integration/test_data_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ async def test_search_geometry(geom_fixture,
207207
cl = DataClient(session, base_url=TEST_URL)
208208
geom = request.getfixturevalue(geom_fixture)
209209
items_list = [
210-
i async for i in cl.search(
211-
['PSScene'], name='quick_search', geometry=geom)
210+
i async for i in cl.search(['PSScene'], name='quick_search',
211+
geometry=geom)
212212
]
213213
# check that request is correct
214214
expected_request = {
@@ -355,8 +355,8 @@ async def test_search_sort(item_descriptions,
355355

356356
# run through the iterator to actually initiate the call
357357
[
358-
i async for i in cl.search(
359-
['PSScene'], search_filter=search_filter, sort=sort)
358+
i async for i in cl.search(['PSScene'], search_filter=search_filter,
359+
sort=sort)
360360
]
361361

362362

@@ -378,8 +378,8 @@ async def test_search_limit(item_descriptions,
378378

379379
cl = DataClient(session, base_url=TEST_URL)
380380
items_list = [
381-
i async for i in cl.search(
382-
['PSScene'], search_filter=search_filter, limit=2)
381+
i async for i in cl.search(['PSScene'], search_filter=search_filter,
382+
limit=2)
383383
]
384384

385385
# check only the first two results were returned

0 commit comments

Comments
 (0)