1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00
Files
vcrpy/vcr/__init__.py
2022-10-09 11:35:37 -03:00

14 lines
296 B
Python

import logging
from logging import NullHandler
from .config import VCR
from .record_mode import RecordMode as mode # noqa import is not used in this file
__version__ = "4.2.1"
logging.getLogger(__name__).addHandler(NullHandler())
default_vcr = VCR()
use_cassette = default_vcr.use_cassette