Skip to content

Commit 47d935a

Browse files
committed
fix(test/test_changelog): remove unused type ignore comments
137
1 parent 61c13e4 commit 47d935a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/test_changelog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@
468468
]
469469

470470

471-
@pytest.fixture # type: ignore
471+
@pytest.fixture
472472
def gitcommits() -> list:
473473
commits = [
474474
git.GitCommit(
@@ -483,13 +483,13 @@ def gitcommits() -> list:
483483
return commits
484484

485485

486-
@pytest.fixture # type: ignore
486+
@pytest.fixture
487487
def tags() -> list:
488488
tags = [git.GitTag(*tag) for tag in TAGS]
489489
return tags
490490

491491

492-
@pytest.fixture # type: ignore
492+
@pytest.fixture
493493
def changelog_content() -> str:
494494
changelog_path = "tests/CHANGELOG_FOR_TEST.md"
495495
with open(changelog_path, "r") as f:

tests/test_changelog_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"""
2626

2727

28-
@pytest.fixture # type: ignore
28+
@pytest.fixture
2929
def changelog_content() -> str:
3030
changelog_path = "tests/CHANGELOG_FOR_TEST.md"
3131
with open(changelog_path, "r") as f:

0 commit comments

Comments
 (0)