Files
Gymnasium/gym/monitoring/tests/helpers.py
2016-05-15 17:22:38 -07:00

10 lines
160 B
Python

import contextlib
import shutil
import tempfile
@contextlib.contextmanager
def tempdir():
temp = tempfile.mkdtemp()
yield temp
shutil.rmtree(temp)