Skip to content

Commit

Permalink
use double quotes for fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
nazunalika committed May 5, 2024
1 parent 441eaa7 commit 796e96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iso/empanadas/empanadas/util/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ def s3_determine_latest(s3_bucket, release, arches, filetype, name,

for arch in arches:
temps = []
start_of_path = f'{root_prefix}-{release.split('.')[0]}-{arch}'
start_of_path = f"{root_prefix}-{release.split('.')[0]}-{arch}"
for y in temp:
if arch in y and start_of_path in y:
temps.append(y)
Expand Down

0 comments on commit 796e96e

Please sign in to comment.