Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions check-submodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ def save_diff_files(
old_dir: pathlib.Path, new_dir: pathlib.Path, compare_dir: pathlib.Path
) -> None:
# Get all metric files in old and new directories
old_paths = pathlib.Path(old_dir).glob("**/*.json")
new_paths = pathlib.Path(new_dir).glob("**/*.json")
old_paths = sorted(pathlib.Path(old_dir).glob("*.json"))
new_paths = sorted(pathlib.Path(new_dir).glob("*.json"))

# Save the differences between json files in the chosen dir
for old_filename, new_filename in zip(old_paths, new_paths):
Expand Down