Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
BalduinLetzer committed Aug 8, 2024
1 parent ca0d0c4 commit 7108e52
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions hbw/trigger/categories.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ def catid_trigger_orth_mu(
) -> tuple[ak.Array, ak.Array]:
if results:
return events, (
results.steps.TrigEleMatch &
results.steps.SR_mu &
results.steps.ref_trigger_mu
)
results.steps.TrigEleMatch &
results.steps.SR_mu &
results.steps.ref_trigger_mu
)
else:
raise NotImplementedError("Category didn't receive a SelectionResult")

Expand All @@ -69,9 +69,9 @@ def catid_trigger_orth_ele(
) -> tuple[ak.Array, ak.Array]:
if results:
return events, (
results.steps.TrigMuMatch &
results.steps.SR_ele &
results.steps.ref_trigger_e
)
results.steps.TrigMuMatch &
results.steps.SR_ele &
results.steps.ref_trigger_e
)
else:
raise NotImplementedError("Category didn't receive a SelectionResult")

0 comments on commit 7108e52

Please sign in to comment.