Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Scripts/o2_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,7 @@ class TestPdgMass(TestSpec):
"""Detect unnecessary call of Mass() for a known PDG code."""

name = "pdg/known-mass"
message = (
"Use o2::constants::physics::Mass... instead of calling a database method for a known PDG code."
)
message = "Use o2::constants::physics::Mass... instead of calling a database method for a known PDG code."
suffixes = [".h", ".cxx", ".C"]

def test_line(self, line: str) -> bool:
Expand Down
Loading