diff --git a/src/graphnet/training/utils.py b/src/graphnet/training/utils.py index 1bb2d89e1..1befa9f77 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 "production. + Should not occur in "productio"n. """ graphs = [g for g in graphs if g.n_pulses > 1] return Batch.from_data_list(graphs)