test input hiding

This commit is contained in:
Bryan Gerlach
2026-01-11 15:26:19 -06:00
parent 14703c9f91
commit 4068167379

View File

@@ -246,7 +246,7 @@ def generator_view(request):
temp_json_path = f"data_{uuid.uuid4()}.json"
zip_filename = f"secrets_{uuid.uuid4()}.zip"
zip_path = "temp_zips/%s" % (zip_filename)
Path("temp_zips").mkdir(parents=True, exists_ok=True)
Path("temp_zips").mkdir(parents=True, exist_ok=True)
with open(temp_json_path, "w") as f:
json.dump(inputs_raw, f)