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 21, 2025
1 parent f2f5329 commit 2d1e21d
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ def analysis_func(self,
break

# Check for only_referenced_functions flag
if (self.only_referenced_functions and
function.function_name not in xref_dict):
if (self.only_referenced_functions
and function.function_name not in xref_dict):
continue

# Check for only_header_functions
Expand All @@ -151,8 +151,7 @@ def analysis_func(self,
return ''

def _get_cross_reference_dict(
self,
functions: List[function_profile.FunctionProfile]
self, functions: List[function_profile.FunctionProfile]
) -> Dict[str, int]:
"""Internal helper function to build up a function cross reference
dict."""
Expand Down

0 comments on commit 2d1e21d

Please sign in to comment.