From 2bfafc9a6416c44b9bcc235823fedc9730f0a5ba Mon Sep 17 00:00:00 2001 From: Christoph Zwerschke Date: Mon, 13 Nov 2023 16:54:05 +0000 Subject: [PATCH] Remove now unnecessary mypy ignore hints --- tests/unit/user_management/claims_repository/test_claims.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/user_management/claims_repository/test_claims.py b/tests/unit/user_management/claims_repository/test_claims.py index c1a31f71..19f7d2a2 100644 --- a/tests/unit/user_management/claims_repository/test_claims.py +++ b/tests/unit/user_management/claims_repository/test_claims.py @@ -162,7 +162,7 @@ def test_has_download_access_for_dataset(): id="claim-id", user_id="user-id", visa_type=VisaType.CONTROLLED_ACCESS_GRANTS, - visa_value=f"{ORG_URL}/datasets/some-dataset-id", # type: ignore + visa_value=f"{ORG_URL}/datasets/some-dataset-id", # pyright: ignore source=ORG_URL, assertion_date=datetime_utc(2022, 11, 1), asserted_by=AuthorityLevel.SYSTEM, @@ -194,7 +194,7 @@ def test_dateset_id_when_download_access(): id="claim-id", user_id="user-id", visa_type=VisaType.CONTROLLED_ACCESS_GRANTS, - visa_value=f"{ORG_URL}/datasets/some-dataset-id", # type: ignore + visa_value=f"{ORG_URL}/datasets/some-dataset-id", # pyright: ignore source=ORG_URL, assertion_date=datetime_utc(2022, 11, 1), asserted_by=AuthorityLevel.SYSTEM,