From 3f967f8a7a60b06e516bc9b82416f8f1b53d6d88 Mon Sep 17 00:00:00 2001 From: Martyn Bristow Date: Sun, 30 Oct 2022 18:09:03 +0000 Subject: [PATCH] Revert change: `pprint` to `print` ... `pprint` is valid and the correct thing for this example (pretty-print-usage) Signed-off-by: Martyn Bristow --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 94df68e8a..9c5ce860e 100644 --- a/README.rst +++ b/README.rst @@ -145,7 +145,7 @@ If you want to see the response in pretty print format JSON. Feel free for use c from pprint import pprint # you code here # and then print using pprint(result) instead of print(result) - print(response) + pprint(response) How to contribute? __________________