diff --git a/src/graphnet/training/utils.py b/src/graphnet/training/utils.py index 1befa9f77..ec3b4c461 100644 --- a/src/graphnet/training/utils.py +++ b/src/graphnet/training/utils.py @@ -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)