File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Shortcuts to retrieve mime type using magic"""
4
4
5
- import os
6
5
import pathlib
7
6
from contextlib import contextmanager
8
7
from tempfile import TemporaryDirectory
@@ -40,10 +39,9 @@ def get_content_mimetype(content: bytes | str) -> str:
40
39
return MIME_OVERRIDES .get (detected_mime , detected_mime )
41
40
42
41
43
- def delete_callback (fpath : str | pathlib .Path ):
42
+ def delete_callback (fpath : pathlib .Path ):
44
43
"""helper deleting passed filepath"""
45
-
46
- os .unlink (fpath )
44
+ fpath .unlink (missing_ok = True )
47
45
48
46
49
47
@contextmanager
Original file line number Diff line number Diff line change @@ -57,6 +57,12 @@ def test_delete_callback(tmp_path: pathlib.Path):
57
57
58
58
assert not fpath .exists ()
59
59
60
+ # file already gone should not be a problem
61
+ delete_callback (fpath )
62
+
63
+ # wrong path should not be a problem
64
+ delete_callback (pathlib .Path ("/foo.txt" ))
65
+
60
66
61
67
def test_path_from_tmp_dir ():
62
68
tempdir = TemporaryDirectory ()
You can’t perform that action at this time.
0 commit comments