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.
This commit is contained in:
Ivan 2023-03-08 00:10:23 -05:00 committed by GitHub
parent 7ade419a0e
commit 97e3666e0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,7 +48,7 @@
} }
], ],
"source": [ "source": [
"requests.run(\"https://www.google.com\")" "requests.get(\"https://www.google.com\")"
] ]
}, },
{ {