Skip to content

Commit 720e4f8

Browse files
committed
Avoid pylint errors
1 parent 023f750 commit 720e4f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/mock_vws/test_flask_app_usage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ def test_give_no_details(self, high_quality_image: io.BytesIO) -> None:
313313
client_secret_key=data['client_secret_key'],
314314
)
315315

316-
assert vws_client.list_targets() == []
317-
assert cloud_reco_client.query(image=high_quality_image) == []
316+
assert not vws_client.list_targets()
317+
assert not cloud_reco_client.query(image=high_quality_image)
318318

319319

320320
class TestDeleteDatabase:

0 commit comments

Comments
 (0)