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 c8299103fb pep8 fixes
2013-08-23 20:35:43 -10:00

9 lines
173 B
Python

from config import VCR
default_vcr = VCR()
# Also, make a 'load' function available
def use_cassette(path, **kwargs):
return default_vcr.use_cassette(path, **kwargs)