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 a57c894 commit 8b3c4e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fuzz_introspector/datatypes/function_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def __init__(self, elem: Dict[Any, Any]) -> None:
# Currently, only JVM projects are using these parameters
# All functions of non-JVM projects will always get True for these parameters
self.is_accessible = self._is_function_acccessible(elem)
self.is_library = self._is_jvm_library(elem)
self.is_jvm_library = self._is_jvm_library(elem)
self.is_enum = self._is_enum_class(elem)

# Temporary handle for unreadable library method (JVM)
Expand Down Expand Up @@ -123,7 +123,7 @@ def load_func_callsites(self, yaml_callsites: Any) -> Dict[str, List[str]]:

return cs_loaded

### Special functions for discovering accessibility and status for JVM methods. ###
# Special functions for discovering accessibility and status for JVM methods. #

def _is_function_acccessible(self, elem: Dict[Any, Any]) -> bool:
if "JavaMethodInfo" in elem and elem['JavaMethodInfo']:
Expand Down

0 comments on commit 8b3c4e5

Please sign in to comment.