Skip to content

Commit

Permalink
Update utils.py
Browse files Browse the repository at this point in the history
fixed typo
  • Loading branch information
AMHermansen authored Sep 19, 2023
1 parent 368b9a8 commit 396eb77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/graphnet/training/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
def collate_fn(graphs: List[Data]) -> Batch:
"""Remove graphs with less than two DOM hits.
Should not occur in "productio"n.
Should not occur in "production".
"""
graphs = [g for g in graphs if g.n_pulses > 1]
return Batch.from_data_list(graphs)
Expand Down

0 comments on commit 396eb77

Please sign in to comment.