Skip to content

Commit

Permalink
Remove debug print statements from order endpoint
Browse files Browse the repository at this point in the history
This commit eliminates unnecessary print statements used for debugging in the order endpoint. This cleanup helps improve code readability and ensures no unintended outputs appear in the production environment.
  • Loading branch information
Zerskk committed Dec 3, 2024
1 parent 01a2b72 commit 0c11ae4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/api/endpoints/order.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,6 @@ async def receipt(order_token: str):
except:
comments = []

print(project.name)
print(project.web_url)
print(project.owner.name)
print(review.status)

try:
receipt = Receipt(status=review.status, web_url=project.web_url, investigation_name=review.title, comments=comments, order_id=review.id)
except:
Expand Down

0 comments on commit 0c11ae4

Please sign in to comment.