1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-08 16:53:23 +00:00
Files
vcrpy/vcr/__init__.py
Kevin McCarthy f3f66086a1 Release v4.2.1
2022-08-31 14:14:32 -05:00

13 lines
295 B
Python

import logging
from .config import VCR
from logging import NullHandler
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