Skip to content

Commit

Permalink
Run ruff.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Dec 12, 2024
1 parent 25caaf3 commit 54d92c4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions sdcflows/utils/wrangler.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,10 +371,13 @@ def find_estimators(
# flatten lists from json (tupled in pybids for hashing), then unique
b0_ids = reduce(
set.union,
(listify(ids) for ids in layout.get_B0FieldIdentifiers(
session=sessions, **base_entities)
(
listify(ids)
for ids in layout.get_B0FieldIdentifiers(
session=sessions, **base_entities
)
),
set()
set(),
)

if b0_ids:
Expand Down

0 comments on commit 54d92c4

Please sign in to comment.