mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-08 16:53:23 +00:00
10 lines
235 B
Python
10 lines
235 B
Python
"""Stubs for boto"""
|
|
|
|
from boto.https_connection import CertValidatingHTTPSConnection
|
|
|
|
from ..stubs import VCRHTTPSConnection
|
|
|
|
|
|
class VCRCertValidatingHTTPSConnection(VCRHTTPSConnection):
|
|
_baseclass = CertValidatingHTTPSConnection
|