Skip to content

Commit 10f8bc8

Browse files
authored
fix: Fix typo in definition of constituents (min_pt instead of min_p) (#326)
1 parent 1a4f68c commit 10f8bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fastjet/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ def exclusive_jets_constituents_index(self, njets: int = 10) -> ak.Array:
347347

348348
raise AssertionError()
349349

350-
def constituents(self, min_p: float = 0) -> ak.Array:
350+
def constituents(self, min_pt: float = 0) -> ak.Array:
351351
"""Returns the particles that make up each Jet.
352352
353353
Args:

0 commit comments

Comments
 (0)