Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <arthur.chan@adalogics.com>
  • Loading branch information
arthurscchan committed Dec 13, 2024
1 parent d4be9c9 commit 062da60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzz_introspector/code_coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def load_go_coverage(target_dir: str,
cov_line = f.readlines()[1:]

# Process line coverage from fuzz.cov
line_coverage: dict[int, int] = {}
line_coverage: Dict[str, Dict[int, int]] = {}
for line in cov_line:
# Line format
# <file>:<start_line>.<start_col>,<end_line>.<end_col> <stmts> <hit>
Expand Down

0 comments on commit 062da60

Please sign in to comment.