forgot to close() a file - still no guarantees this works

master
Jan Danielzick 2024-06-16 03:26:14 +02:00
parent 1b3df06bf6
commit 1c57e3ee44
1 changed files with 1 additions and 0 deletions

View File

@ -97,3 +97,4 @@ infileobject.close()
outfileobject = open(outfile, "w"); outfileobject = open(outfile, "w");
outfileobject.write(json.dumps(rows)) outfileobject.write(json.dumps(rows))
outfileobject.close()