Skip to content

Commit 207bbad

Browse files
authored
Trivial mypy fix (#8513)
1 parent d4380a7 commit 207bbad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

continuous_integration/scripts/test_report.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -498,9 +498,9 @@ def main(argv: list[str] | None = None) -> None:
498498
)
499499
overall = {name: grouped.get_group(name) for name in grouped.groups}
500500

501-
# Get all of the workflow run timestamps that we wound up with, which we can use
501+
# Get all the workflow run timestamps that we wound up with, which we can use
502502
# below to align the different groups.
503-
times = set()
503+
times: set = set()
504504
for df in overall.values():
505505
times.update(df.date.unique())
506506

0 commit comments

Comments
 (0)