Revert "Merge pull request #5171 from RasmusWL/restructure-queries"

This reverts commit 8caafb3710, reversing
changes made to ec79094957.
This commit is contained in:
Rasmus Wriedt Larsen
2021-02-17 16:32:53 +01:00
parent ce1d8ded22
commit 7afe3972d8
225 changed files with 40 additions and 42 deletions

View File

@@ -0,0 +1,6 @@
from tempfile import NamedTemporaryFile
def write_results(results):
with NamedTemporaryFile(mode="w+", delete=False) as f:
f.write(results)
print("Results written to", f.name)