We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 985892d + 97d5afb commit 842a99fCopy full SHA for 842a99f
1 file changed
cmdstanpy/__init__.py
@@ -2,7 +2,6 @@
2
"""CmdStanPy Module"""
3
4
import atexit
5
-import logging
6
import shutil
7
import tempfile
8
@@ -16,9 +15,7 @@
16
15
17
def _cleanup_tmpdir() -> None:
18
"""Force deletion of _TMPDIR."""
19
- # logging.getLogger('cmdstanpy').info('deleting tmpfiles dir: %s', _TMPDIR)
20
shutil.rmtree(_TMPDIR, ignore_errors=True)
21
- # logging.getLogger('cmdstanpy').info('done')
22
23
24
atexit.register(_cleanup_tmpdir)
0 commit comments