Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Célian Raimbault <[email protected]>
  • Loading branch information
FlorentClarret and CelianR authored May 16, 2024
1 parent 30607ba commit 1b58e8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tasks/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ def install_go_tools(ctx) -> SetupResult:
from tasks import install_tools

install_tools(ctx)
except Exception:
except:
status = Status.FAIL

return SetupResult("Install Go tools", status)
Expand All @@ -194,7 +194,7 @@ def download_go_tools(ctx) -> SetupResult:
from tasks import download_tools

download_tools(ctx)
except Exception:
except:
status = Status.FAIL

return SetupResult("Download Go tools", status)

0 comments on commit 1b58e8a

Please sign in to comment.