Skip to content

Commit

Permalink
Update reproducibility_checker.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengSun committed Feb 5, 2024
1 parent e642da1 commit b98feab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reproducibility_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def check_reproducibility_of_all_notebooks_in_a_folder(folder_path: str):
# Output missing functions, if any
if result:
error_msg = ""
for file_path, missing_functions in result:
for file_path, missing_functions in result.items():
error_msg += f"File: {file_path}\nMissing Functions: {', '.join(missing_functions)}\n"
raise ValueError(error_msg)
else:
Expand Down

0 comments on commit b98feab

Please sign in to comment.