Files
Gymnasium/tests/wrappers/monitoring/helpers.py

11 lines
161 B
Python
Raw Normal View History

import contextlib
import shutil
import tempfile
2021-07-29 02:26:34 +02:00
@contextlib.contextmanager
def tempdir():
temp = tempfile.mkdtemp()
yield temp
shutil.rmtree(temp)