Print whole comment for debug

This commit is contained in:
Daniel Lindmark 2024-05-15 11:33:58 -05:00
parent cad687ca2c
commit 28525b67d1

View File

@ -81,7 +81,8 @@ comments = design_review.get_comments()
for comment in comments:
# write to file
with open(file_name, 'a') as f:
f.write(f"Comment: {comment.text}\n")
f.write(f"{comment}")
# f.write(f"Comment: {comment.text}\n")
f.write("\n")
# Close file