Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Dec 18, 2024
1 parent bffcb10 commit 0d32718
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/fairchem/core/datasets/base_dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from typing import (
TYPE_CHECKING,
Any,
NamedTuple,
TypeVar,
)

Expand Down Expand Up @@ -109,7 +108,7 @@ def _metadata(self) -> DatasetMetadata:
metadata = DatasetMetadata(
**{
field: np.concatenate([metadata[field] for metadata in metadata_npzs])
for field in metadata_npzs[0].keys()
for field in metadata_npzs[0]
}
)

Expand Down

0 comments on commit 0d32718

Please sign in to comment.