Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
Signed-off-by: David Korczynski <[email protected]>
  • Loading branch information
DavidKorczynski committed Jan 15, 2025
1 parent c324bc2 commit 48546a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fuzz_introspector/html_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -841,9 +841,9 @@ def create_html_report(introspection_proj: analysis.IntrospectionProject,

# Write jvm constructor details to all-fuzz-introspector-jvm-constructor.json
if introspection_proj.proj_profile.target_lang == 'jvm' and all_functions_json_report:
jvm_constructor_json_report = []
jvm_constructor_json_report: List[Dict[str, Any]] = []
for fd in introspection_proj.proj_profile.all_constructors.values():
json_copy = dict()
json_copy: Dict[str, Any] = dict()
json_copy['Func name'] = fd.function_name
json_copy['func_url'] = 'N/A'
json_copy['function_signature'] = fd.function_name
Expand Down

0 comments on commit 48546a1

Please sign in to comment.