From 572da2084df00891407d43acbef498b261a96206 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sat, 27 May 2017 15:43:00 -1000 Subject: [PATCH] Fix pyflake issue --- vcr/patch.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/vcr/patch.py b/vcr/patch.py index e61b153..bc93ad9 100644 --- a/vcr/patch.py +++ b/vcr/patch.py @@ -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)