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 May 3, 2024
1 parent 8b3c4e5 commit 557bbc6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fuzz_introspector/datatypes/function_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ def load_func_callsites(self, yaml_callsites: Any) -> Dict[str, List[str]]:

def _is_function_acccessible(self, elem: Dict[Any, Any]) -> bool:
if "JavaMethodInfo" in elem and elem['JavaMethodInfo']:
return (bool(elem['JavaMethodInfo']['public']) and
bool(elem['JavaMethodInfo']['classPublic']) and
bool(elem['JavaMethodInfo']['concrete']) and
bool(elem['JavaMethodInfo']['classConcrete']))
return (bool(elem['JavaMethodInfo']['public'])
and bool(elem['JavaMethodInfo']['classPublic'])
and bool(elem['JavaMethodInfo']['concrete'])
and bool(elem['JavaMethodInfo']['classConcrete']))

return True

Expand Down

0 comments on commit 557bbc6

Please sign in to comment.