From 6cea3db1418c659cac6e9fcbc05ee9b63aa71074 Mon Sep 17 00:00:00 2001 From: Arthur Chan Date: Mon, 20 Jan 2025 14:24:14 +0000 Subject: [PATCH] Fix formatting Signed-off-by: Arthur Chan --- src/fuzz_introspector/analyses/source_code_line_analyser.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fuzz_introspector/analyses/source_code_line_analyser.py b/src/fuzz_introspector/analyses/source_code_line_analyser.py index d115b1cdc..0ef6b0515 100644 --- a/src/fuzz_introspector/analyses/source_code_line_analyser.py +++ b/src/fuzz_introspector/analyses/source_code_line_analyser.py @@ -78,7 +78,8 @@ def analysis_func(self, target_source = str(self.properties.get('source_file')) target_line = self.properties.get('line') - if not target_source or not isinstance(target_line, int) or target_line <= 0: + if not target_source or not isinstance(target_line, + int) or target_line <= 0: logger.error('No valid source code or target line are provided') return ''