Skip to content

Commit

Permalink
Fix URI to not be a tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
azvoleff committed Jan 27, 2025
1 parent 9c2151b commit 2cbe026
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"openpyxl>=3.1.3",
"backoff>=2.1.0",
"marshmallow>=3.21.3",
"marshmallow-dataclass[enum, union]==8.7.0",
"marshmallow-dataclass[enum, union]>=8.7.0",
"defusedxml>=0.7.1",
"te_schemas @ git+https://github.com/ConservationInternational/trends.earth-schemas.git@master",
],
Expand Down
2 changes: 1 addition & 1 deletion te_algorithms/api/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def download_cloud_results(
aws_access_key_id=aws_access_key_id,
aws_secret_access_key=aws_secret_access_key,
)
raster_uri = (results.URI(uri=out_file),)
raster_uri = results.URI(uri=out_file)
raster.uri = raster_uri
out_rasters.append(
results.Raster(
Expand Down

0 comments on commit 2cbe026

Please sign in to comment.