Skip to content

Commit

Permalink
Merge pull request #49 from bioimage-io/fix-unzip-package-error
Browse files Browse the repository at this point in the history
fixed trying to do len on generator
  • Loading branch information
jmetz authored Feb 9, 2024
2 parents 9378f1e + a11d781 commit ee23d6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/unzip_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def unzip_from_url(resource_path, package_url):
filename = "model.zip"
client = create_client()

versions = client.check_versions(resource_path)
versions = list(client.check_versions(resource_path))
if len(versions) == 0:
version = "1"

Expand Down

0 comments on commit ee23d6b

Please sign in to comment.