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 0dee4d0 commit 37800caCopy full SHA for 37800ca
bench_runner/plot.py
@@ -65,7 +65,7 @@ class Options:
65
plt.close("all")
66
67
if output_filename.suffix == ".svg":
68
- with tempfile.NamedTemporaryFile(delete=False) as tmp:
+ with tempfile.NamedTemporaryFile(dir=output_filename.parent, delete=False) as tmp:
69
with open(output_filename) as fd:
70
scour.start(Options(), fd, tmp)
71
output_filename.unlink()
0 commit comments