Skip to content

Commit

Permalink
Fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
elopez committed Mar 20, 2023
1 parent d7fc54e commit e6628fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solc_select/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def mac_can_run_intel_binaries() -> bool:
assert sys.platform == "darwin"
if platform.machine() == "arm64":
# M1/M2 Mac
result = subprocess.run(["/usr/bin/pgrep", "-q", "oahd"], capture_output=True)
result = subprocess.run(["/usr/bin/pgrep", "-q", "oahd"], capture_output=True, check=False)
return result.returncode == 0

# Intel Mac
Expand Down

0 comments on commit e6628fb

Please sign in to comment.