From 2d1e21dd17d1d6f48908058e52c1b0d90e4ae931 Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Tue, 21 Jan 2025 18:56:48 +0000 Subject: [PATCH] Fix formatting Signed-off-by: Arthur Chan --- .../analyses/far_reach_low_coverage_analyser.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/src/fuzz_introspector/analyses/far_reach_low_coverage_analyser.py b/src/fuzz_introspector/analyses/far_reach_low_coverage_analyser.py index f48985ad7..1f70cf047 100644 --- a/src/fuzz_introspector/analyses/far_reach_low_coverage_analyser.py +++ b/src/fuzz_introspector/analyses/far_reach_low_coverage_analyser.py @@ -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 @@ -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."""