Skip to content

Commit 7882770

Browse files
committed
Remove unnecessary import
1 parent 9956cd5 commit 7882770

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_clever.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
json = importer.import_json()
1111

1212
import requests
13-
from httmock import urlmatch, response, HTTMock
13+
from httmock import response, HTTMock
1414

1515

1616
def functional_test(auth):
@@ -123,7 +123,7 @@ def test_nonexistent_object(self):
123123
self.assertFalse(isinstance(e.json_body, dict)) # 404 does not have a body
124124
self.assertTrue(isinstance(e.http_body, str))
125125

126-
# http response content for httmock mock requests
126+
#generates httmock responses for TooManyRequestsErrorTest
127127
def too_many_requests_content(url, request):
128128
headers = {
129129
'X-Ratelimit-Bucket': 'all, none',

0 commit comments

Comments
 (0)