Skip to content

Commit

Permalink
fix: dont need to format str
Browse files Browse the repository at this point in the history
  • Loading branch information
MDavidson17 committed Aug 18, 2022
1 parent af3391e commit f09657e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/standardising.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
continue

s3_path = parse_path(file)
standardized_file_name = f"{get_file_name_from_path(s3_path.key)}"
standardized_file_name = get_file_name_from_path(s3_path.key)
tmp_file_path = os.path.join("/tmp/", standardized_file_name)
command = [
"gdal_translate",
Expand Down

0 comments on commit f09657e

Please sign in to comment.