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 Jan 10, 2025
1 parent eb50744 commit 0475d08
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/fuzz_introspector/frontends/frontend_jvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,10 @@ def _process_invoke(
# Preserve the full method call
elif name:
if objects:
target_name = f'{objects.text.decode()}.{name.text.decode()}({",".join(argument_types)})'
target_name = (
f'{objects.text.decode()}.{name.text.decode()}'
'({",".join(argument_types)})'
)
else:
target_name = f'{name.text.decode()}({",".join(argument_types)})'

Expand Down

0 comments on commit 0475d08

Please sign in to comment.