Skip to content

Commit

Permalink
fix: convert the array to list in download instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
vkt1414 committed May 30, 2024
1 parent 90ac74a commit 036febc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ WHERE
selection_df = client.sql_query(query)

client.download_from_selection(
seriesInstanceUID=selection_df["SeriesInstanceUID"].values[:10], downloadDir="."
seriesInstanceUID=list(selection_df["SeriesInstanceUID"].values[:10]),
downloadDir=".",
)
```

Expand Down

0 comments on commit 036febc

Please sign in to comment.