Skip to content

Commit

Permalink
sort filepaths (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
lbluque authored Sep 9, 2024
1 parent fc99eef commit 98c61b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fairchem/core/datasets/ase_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def _load_dataset_get_ids(self, config: dict) -> list[int]:

self.dbs = []

for path in filepaths:
for path in sorted(filepaths):
try:
self.dbs.append(self.connect_db(path, config.get("connect_args", {})))
except ValueError:
Expand Down

0 comments on commit 98c61b8

Please sign in to comment.