Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
masonproffitt committed Oct 20, 2023
1 parent b9d9740 commit 14284ad
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/test_adl_benchmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1204,8 +1204,13 @@ def test_adl_benchmark_8():
)
# Quotes needed around lambda here due to https://github.com/iris-hep/func_adl/issues/127
.Select(
lambda event: (2 * event.leading_other_lepton_p4.pt * event.met.pt
* (1 - np.cos(event.leading_other_lepton_p4.deltaphi(event.met)))) ** 0.5
lambda event: (
2
* event.leading_other_lepton_p4.pt
* event.met.pt
* (1 - np.cos(event.leading_other_lepton_p4.deltaphi(event.met)))
)
** 0.5
)
)
(
Expand Down

0 comments on commit 14284ad

Please sign in to comment.