Skip to content

Commit bb0cb7b

Browse files
committed
Fix
1 parent 1e6230e commit bb0cb7b

File tree

1 file changed

+1
-1
lines changed
  • v03_pipeline/lib/misc

1 file changed

+1
-1
lines changed

v03_pipeline/lib/misc/io.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def select_relevant_fields(
151151
for row_field in dataset_type.optional_row_fields
152152
if hasattr(mt, row_field)
153153
]
154-
mt = mt.select_rows([*dataset_type.row_fields, *optional_row_fields])
154+
mt = mt.select_rows(*dataset_type.row_fields, *optional_row_fields)
155155
mt = mt.select_cols(*dataset_type.col_fields)
156156
return mt.select_entries(*dataset_type.entries_fields)
157157

0 commit comments

Comments
 (0)