Skip to content

Commit

Permalink
Merge branch 'main' into http-driver-bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
nvidianz authored Feb 2, 2024
2 parents 9c32ec3 + 78e493b commit 8f44e02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def main():
for config, exp in experiments.items():
config_name = config.split(" ")[0]
alpha = exp.get("alpha", None)
if alpha:
if alpha is not None:
config_name = config_name + f"*alpha{alpha}"
else:
raise ValueError(f"Expected an alpha value to be provided but got alpha={alpha}")
Expand Down

0 comments on commit 8f44e02

Please sign in to comment.