1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00

Fix pyflake issue

This commit is contained in:
Kevin McCarthy
2017-05-27 15:43:00 -10:00
parent 88bf8f0aac
commit 572da2084d

View File

@@ -45,9 +45,6 @@ else:
_cpoolHTTPSConnection = cpool.HTTPSConnection
# Try to save the original types for httplib2
try:
import httplib2
@@ -183,7 +180,7 @@ class CassettePatcherBuilder(object):
def _requests(self):
try:
from .stubs import requests_stubs
except ImportError: # pragma: no cover
except ImportError: # pragma: no cover
return ()
return self._urllib3_patchers(cpool, requests_stubs)