Skip to content

Commit

Permalink
delete print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-ashkinaze committed Jul 7, 2024
1 parent c33c882 commit a259fe1
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions plurals/deliberation.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,7 @@ def _format_previous_responses(responses: List[str]) -> str:
for i in range(len(responses)):
response = responses[i]
prefix = "Other:" if i % 2 == 0 else "You:"
print(i)
formatted_responses.append(f"{prefix} {response.strip()}\n")
print(formatted_responses)
return "".join(formatted_responses)

def process(self):
Expand Down

0 comments on commit a259fe1

Please sign in to comment.