Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
Signed-off-by: Yutaka Kondo <[email protected]>
  • Loading branch information
youtalk committed Nov 28, 2024
1 parent fe75d7b commit 2d22b4c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/measure_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,9 @@ def auth(dxf, response):
print(f"Failed to fetch manifest for {tag}")
continue
if type(manifest) is dict:
if arch is "amd64":
if arch == "amd64":
manifest = manifest["linux/amd64"]
elif arch is "arm64":
elif arch == "arm64":
manifest = manifest["linux/arm64"]
else:
continue
Expand Down

0 comments on commit 2d22b4c

Please sign in to comment.