Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
eleanorjboyd committed Sep 25, 2024
1 parent cc6a4a0 commit 0ba73d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_files/unittestadapter/execution.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ def send_run_data(raw_data, test_run_pipe):
cov.save()
cov.load()
file_set: Set[str] = cov.get_data().measured_files()
file_coverage_map: dict[str, FileCoverageInfo] = {}
file_coverage_map: Dict[str, FileCoverageInfo] = {}
for file in file_set:
analysis = cov.analysis2(file)
lines_executable = {int(line_no) for line_no in analysis[1]}
Expand Down

0 comments on commit 0ba73d2

Please sign in to comment.