Skip to content

Commit a9b35a6

Browse files
committed
Adjust return type position.
1 parent fb6e690 commit a9b35a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mavedb/lib/score_sets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def get_score_set_scores_as_csv(
378378
def process_downloadable_data(
379379
rows_data: Iterable[dict[str, Any]],
380380
columns: list[str]
381-
) -> tuple[list[str], list[dict[str, Any]]]:
381+
) -> tuple[list[dict[str, Any]], list[str]]:
382382
"""Process rows_data for downloadable CSV by removing empty columns."""
383383
# Convert map to list.
384384
rows_data = list(rows_data)

0 commit comments

Comments
 (0)