Skip to content

Commit 19c83b8

Browse files
Merge pull request #1021 from VWS-Python/dependabot/pip/requirements/pylint-2.12.2
Bump pylint from 2.11.1 to 2.12.2 in /requirements
2 parents 844233a + 720e4f8 commit 19c83b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

requirements/dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pip_check_reqs==2.3.2
2020
pydocstyle==6.1.1 # Lint docstrings
2121
pyenchant==3.2.2 # Bindings for a spellchecking sytem
2222
pygithub==1.55
23-
pylint==2.11.1 # Lint
23+
pylint==2.12.2 # Lint
2424
pyroma==3.2 # Packaging best practices checker
2525
pytest-cov==3.0.0 # Measure code coverage
2626
pytest-envfiles==0.1.0 # Use files for environment variables for tests

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)