Skip to content

Commit 5fedcb2

Browse files
committed
Add type annotation
1 parent f280d4a commit 5fedcb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/o2_linter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ class TestPdgExplicitMass(TestSpec):
465465
name = "pdg/explicit-mass"
466466
message = "Avoid hard-coded particle masses. Use o2::constants::physics::Mass... instead."
467467
suffixes = [".h", ".cxx"]
468-
masses = [] # list of mass values to detect
468+
masses: "list[str]" = [] # list of mass values to detect
469469

470470
def __init__(self) -> None:
471471
super().__init__()

0 commit comments

Comments
 (0)