mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-09 01:03:24 +00:00
Format with line length 110 to match flake8 make black part of linting check Update travis spec for updated black requirements Add diff output for black on failure update changelog
9 lines
234 B
Python
9 lines
234 B
Python
"""Stubs for boto"""
|
|
|
|
from boto.https_connection import CertValidatingHTTPSConnection
|
|
from ..stubs import VCRHTTPSConnection
|
|
|
|
|
|
class VCRCertValidatingHTTPSConnection(VCRHTTPSConnection):
|
|
_baseclass = CertValidatingHTTPSConnection
|