Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: remove
ResourceWarning
from using TemporaryDirectory
We currently have something like `var = TemporaryDirectory` without explicitly calling the `close` method on `var` thus raising a `ResourceWarning` when the resource is implicitely cleaned-up. This could be avoided by using `mkdtemp` instead.
- Loading branch information