Remove comment.author + comment.created_at

This commit is contained in:
Daniel Lindmark 2024-05-15 11:30:40 -05:00
parent 30f1108c6e
commit cad687ca2c

View File

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