Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan committed Jan 20, 2025
1 parent 9cc9242 commit 6cea3db
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/fuzz_introspector/analyses/source_code_line_analyser.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ''

Expand Down

0 comments on commit 6cea3db

Please sign in to comment.