Skip to content

Commit

Permalink
Merge pull request #5 from bespokelabsai/ryanm/rename-cache
Browse files Browse the repository at this point in the history
rename cache with name first, fingerprint second
  • Loading branch information
madiator authored Nov 2, 2024
2 parents 9d455c1 + 41360be commit 3091c06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bella.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def completions(
"BELLA_CACHE_DIR", os.path.expanduser("~/.cache/bella")
)
name = (
f"{dataset._fingerprint}--{name.replace(' ', '-')}"
f"{name.replace(' ', '-')}--{dataset._fingerprint}"
if name
else f"{dataset._fingerprint}"
)
Expand Down

0 comments on commit 3091c06

Please sign in to comment.