Skip to content

Commit

Permalink
Fix typing
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 Jan 10, 2025
1 parent ff7f8a7 commit 1367c5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzz_introspector/frontends/frontend_jvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def _process_callsites(
) -> tuple[str, list[tuple[str, int, int]]]:
"""Process and store the callsites of the method."""
type = ''
callsites = []
callsites: list[tuple[str, int, int]] = []

if not stmt:
return type, callsites
Expand Down

0 comments on commit 1367c5c

Please sign in to comment.