Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/earthkit/workflows/_qubed.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def expand_fn(action: "Action", qube: "Qube", path: str) -> "Action":
"""Recursively expand the action based on the qube structure."""
if not qube.key == "root": # Skip the root key
# Expand along the current qube's key and values
action = action.expand((qube.key, list(qube.values)), (qube.key, list(qube.values)))
action = action.expand((qube.key, list(qube.values)), (qube.key, list(qube.values)), backend_kwargs={"method": "sel"})

match len(qube.children):
case 0:
Expand Down
Loading