Skip to content

Commit

Permalink
remove local_dir_use_symlinks
Browse files Browse the repository at this point in the history
  • Loading branch information
mertalev committed Sep 12, 2024
1 parent ad58d7e commit c14aa3b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion machine-learning/app/models/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ def _download(self) -> None:
f"immich-app/{clean_name(self.model_name)}",
cache_dir=self.cache_dir,
local_dir=self.cache_dir,
local_dir_use_symlinks=False,
ignore_patterns=ignore_patterns,
)

Expand Down
2 changes: 0 additions & 2 deletions machine-learning/app/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,6 @@ def test_download(self, snapshot_download: mock.Mock) -> None:
"immich-app/ViT-B-32__openai",
cache_dir=encoder.cache_dir,
local_dir=encoder.cache_dir,
local_dir_use_symlinks=False,
ignore_patterns=["*.armnn"],
)

Expand All @@ -136,7 +135,6 @@ def test_download_downloads_armnn_if_preferred_format(self, snapshot_download: m
"immich-app/ViT-B-32__openai",
cache_dir=encoder.cache_dir,
local_dir=encoder.cache_dir,
local_dir_use_symlinks=False,
ignore_patterns=[],
)

Expand Down

0 comments on commit c14aa3b

Please sign in to comment.