We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75561b4 commit 60b5e31Copy full SHA for 60b5e31
cli/src/etos_client/downloader/downloader.py
@@ -265,7 +265,7 @@ def download_report(self, report: Report):
265
Downloadable(
266
url=report.file.get("url"),
267
name=report.file.get("name"),
268
- checksums=report.file.get("checksums"),
+ checksums=report.file.get("checksums", {}),
269
path=reports,
270
)
271
@@ -279,7 +279,7 @@ def download_artifact(self, artifact: Artifact):
279
280
url=artifact.file.get("url"),
281
name=artifact.file.get("name"),
282
- checksums=artifact.file.get("checksums"),
+ checksums=artifact.file.get("checksums", {}),
283
path=artifacts,
284
285
0 commit comments