Update save_design_review.py

This commit is contained in:
Daniel Lindmark 2024-05-15 11:56:24 -05:00
parent 50fe8828fc
commit 21f3d15f95

View File

@ -82,12 +82,11 @@ with open(file_name, 'a') as f:
f.write(f"{comments}")
for comment in comments:
for thing in comment:
# write to file
with open(file_name, 'a') as f:
f.write(f"{comment}")
# f.write(f"Comment: {comment.text}\n")
f.write("\n")
# write to file
with open(file_name, 'a') as f:
f.write(f"{comment}")
# f.write(f"Comment: {comment.text}\n")
f.write("\n")
# Close file
f.close()