Browse Source

fix: remove extraneous '/'

James Alexander Shield 10 months ago
parent
commit
b39a251d3e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      exo/download/hf/hf_helpers.py

+ 1 - 1
exo/download/hf/hf_helpers.py

@@ -71,7 +71,7 @@ def _add_wildcard_to_directories(pattern: str) -> str:
   return pattern
 
 def get_hf_endpoint() -> str:
-    return os.environ.get('HF_ENDPOINT', "https://huggingface.co/")
+    return os.environ.get('HF_ENDPOINT', "https://huggingface.co")
 
 def get_hf_home() -> Path:
   """Get the Hugging Face home directory."""