From 289afd568327634cc4d88d03322403f6b471cb62 Mon Sep 17 00:00:00 2001 From: Jan Dittrich Date: Thu, 12 Aug 2021 15:00:40 +0200 Subject: [PATCH] Fix grammar issue in docs --- templates/docs/python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/docs/python.md b/templates/docs/python.md index 2950894d..04dcd0bc 100644 --- a/templates/docs/python.md +++ b/templates/docs/python.md @@ -27,10 +27,10 @@ except socket.error as e: print("Ping failed: %s" % e) ``` -You can include additional diagnostic information in the in the request body (for POST requests): +You can include additional diagnostic information in the request body (for POST requests): ```python # Passing diagnostic information in the POST body: import requests requests.post("PING_URL", data="temperature=-7") -``` \ No newline at end of file +```