From ee67171cb7cc837f6c728723425d3b2a7efba075 Mon Sep 17 00:00:00 2001 From: Benjamin Bradley Date: Thu, 7 Feb 2019 10:59:38 -0500 Subject: [PATCH] Fixed inconsistent variable name changed my_request to myRequest to match. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a56307..0ba2f53 100644 --- a/README.md +++ b/README.md @@ -236,7 +236,7 @@ With our request URL and Authorization header prepared, we are ready to use Pyth library to make the GET request.
-my_request = urllib2.Request(
+myRequest = urllib2.Request(
     url=request_url,
     data=None,
     headers={'Authorization': authorization_header}