Skip to content

Commit 6125efc

Browse files
committed
fix tmp package path
1 parent 688eb7e commit 6125efc

File tree

1 file changed

+1
-1
lines changed
  • bioimageio/core/resource_io

1 file changed

+1
-1
lines changed

bioimageio/core/resource_io/io_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def _get_tmp_package_path(raw_rd: RawResourceDescription, weights_priority_order
143143
if BIOIMAGEIO_NO_CACHE:
144144
tmp_dir = TemporaryDirectory()
145145
no_cache_tmp_list.append(tmp_dir)
146-
return pathlib.Path(tmp_dir.name)
146+
return pathlib.Path(tmp_dir.name) / "file"
147147

148148
package_file_name = _get_package_base_name(raw_rd, weights_priority_order)
149149
cache_folder = BIOIMAGEIO_CACHE_PATH / "packages"

0 commit comments

Comments
 (0)