From daf4803bd72b4aff35f160c548b85ed7ee0fcc5d Mon Sep 17 00:00:00 2001 From: JustSong Date: Tue, 6 Dec 2022 01:35:28 +0800 Subject: [PATCH] docs: fix example code format --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 923eb03..be3175e 100644 --- a/README.md +++ b/README.md @@ -157,7 +157,7 @@ res = requests.get("https://your.domain.com/push/username?title={}&description={ # POST 方式 res = requests.post("https://your.domain.com/push/username", json={ "title": "标题", - "description" : "描述", + "description": "描述", "content": "**Markdown 内容**", "token": "6666" })