Skip to content

Commit

Permalink
fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
jstucke committed Feb 3, 2023
1 parent c479f58 commit 95b0b7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fact_extractor/helperFunctions/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,6 @@ def check_gcc_major_version_at_least(version: int) -> bool:
try:
output = run(split('gcc -dumpversion'), text=True, capture_output=True, check=False).stdout
major_version = int(output.strip().split('.')[0])
return major_version >= version
return major_version >= version
except ValueError:
return False

0 comments on commit 95b0b7f

Please sign in to comment.