Skip to content

Commit

Permalink
Remove now unnecessary mypy ignore hints
Browse files Browse the repository at this point in the history
  • Loading branch information
Cito committed Nov 13, 2023
1 parent f43db83 commit 2bfafc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/unit/user_management/claims_repository/test_claims.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 2bfafc9

Please sign in to comment.