Skip to content

Commit fb8eae7

Browse files
authored
Merge pull request #166 from intellij-rust/undin/3.8-compatibility
Make `changelog.py` compatible with python 3.8
2 parents 907202a + 7dc5050 commit fb8eae7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

changelog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def contributor_list(args: argparse.Namespace) -> None:
274274
print(c)
275275

276276

277-
def collect_contributors(repo: Repository, milestone: Milestone) -> set[str]:
277+
def collect_contributors(repo: Repository, milestone: Milestone) -> Set[str]:
278278
milestone_contributors = set()
279279
issues = repo.get_issues(milestone=milestone, state="all")
280280
for issue in issues:

0 commit comments

Comments
 (0)