From aee8cdfa31fc7e3776d30513dec58197bdbe012a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 05:08:58 +0000 Subject: [PATCH 1/2] Bump pyright from 1.1.347 to 1.1.348 Bumps [pyright](https://github.com/RobertCraigie/pyright-python) from 1.1.347 to 1.1.348. - [Release notes](https://github.com/RobertCraigie/pyright-python/releases) - [Commits](https://github.com/RobertCraigie/pyright-python/compare/v1.1.347...v1.1.348) --- updated-dependencies: - dependency-name: pyright dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 10d6a6234..836ab7637 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -334,7 +334,7 @@ dev = [ "pyenchant==3.2.2", "pylint==3.0.3", "pyproject-fmt==1.6.0", - "pyright==1.1.347", + "pyright==1.1.348", "pyroma==4.2", "pytest==7.4.4", "pytest-cov==4.1", From 3a7debd695f2277098c6b4fd8ce9e2b7a9d82e5a Mon Sep 17 00:00:00 2001 From: Adam Dangoor Date: Mon, 22 Jan 2024 12:16:04 +0000 Subject: [PATCH 2/2] Use specific new ignore --- tests/mock_vws/fixtures/vuforia_backends.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/mock_vws/fixtures/vuforia_backends.py b/tests/mock_vws/fixtures/vuforia_backends.py index 2207fe75c..ca59bf5c1 100644 --- a/tests/mock_vws/fixtures/vuforia_backends.py +++ b/tests/mock_vws/fixtures/vuforia_backends.py @@ -264,8 +264,8 @@ def verify_mock_vuforia( VuforiaBackend.DOCKER_IN_MEMORY: _enable_use_docker_in_memory, }[backend] - decorated_function = _RETRY_ON_TOO_MANY_REQUESTS(request.node.obj) # pyright: ignore [reportGeneralTypeIssues] - request.node.obj = decorated_function # pyright: ignore [reportGeneralTypeIssues] + decorated_function = _RETRY_ON_TOO_MANY_REQUESTS(request.node.obj) # pyright: ignore [reportAttributeAccessIssue] + request.node.obj = decorated_function # pyright: ignore [reportAttributeAccessIssue] yield from enable_function( working_database=vuforia_database,