Skip to content
This repository was archived by the owner on May 25, 2025. It is now read-only.

Commit 01c3e7a

Browse files
committed
webhook: Remove some debugging prints
1 parent 92dca4a commit 01c3e7a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

quart_github_webhook/webhook.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@ async def _postreceive(self):
6565

6666
event_type = _get_header("X-Github-Event")
6767
content_type = _get_header("content-type")
68-
print(content_type, await request.data, await request.form)
6968
if content_type == "application/x-www-form-urlencoded":
7069
formdata = (await request.form).to_dict(flat=True)
71-
print(formdata)
7270
data = json.loads(formdata["payload"])
7371
elif content_type == "application/json":
7472
data = await request.get_json()

0 commit comments

Comments
 (0)