Skip to content

Commit 0413fce

Browse files
committed
Fix output path
1 parent 942b144 commit 0413fce

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

opendrift_leeway_webgui/simulation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def main():
341341
)
342342

343343
fig.savefig(f"{outfile}.png")
344-
with open("{outfile}.geojson", "w") as fp:
344+
with open(f"{outfile}.geojson", "w") as fp:
345345
json.dump(geojson, fp)
346346

347347
print(f"Success: {outfile}.png written.")

0 commit comments

Comments
 (0)