From 97e3666e0dc06baf9c1804c5a02343b43aec0b55 Mon Sep 17 00:00:00 2001 From: Ivan Date: Wed, 8 Mar 2023 00:10:23 -0500 Subject: [PATCH] changed requests.run to requests.get (#1485) This pull request proposes an update to the Lightweight wrapper library's documentation. The current documentation provides an example of how to use the library's requests.run method, as follows: requests.run("https://www.google.com"). However, this example does not work for the 0.0.102 version of the library. Testing: The changes have been tested locally to ensure they are working as intended. Thank you for considering this pull request. --- docs/modules/utils/examples/requests.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/utils/examples/requests.ipynb b/docs/modules/utils/examples/requests.ipynb index 564034a320..b433de5de7 100644 --- a/docs/modules/utils/examples/requests.ipynb +++ b/docs/modules/utils/examples/requests.ipynb @@ -48,7 +48,7 @@ } ], "source": [ - "requests.run(\"https://www.google.com\")" + "requests.get(\"https://www.google.com\")" ] }, {