1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-10 09:35:34 +00:00
Files
vcrpy/vcr/__init__.py
2019-12-20 12:11:01 +11:00

12 lines
211 B
Python

import logging
from .config import VCR
from logging import NullHandler
__version__ = "4.0.1"
logging.getLogger(__name__).addHandler(NullHandler())
default_vcr = VCR()
use_cassette = default_vcr.use_cassette