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 Jul 17, 2024
1 parent 80675bc commit eea841e
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 @@ -691,7 +691,7 @@ def load_jvm_coverage(target_dir: str,
# Determine method full signaturre
desc = method.attrib['desc'].split('(', 1)[1].split(')', 1)[0]
args = _interpret_jvm_arguments_type(desc)
name = '[{class_name}].{method.attrib["name"]}(",".join(args))'
name = f'[{class_name}].{method.attrib["name"]}({",".join(args)})'

start_line = int(method.attrib['line'])
total_line = 0
Expand Down

0 comments on commit eea841e

Please sign in to comment.