navidved commited on
Commit
a6b0f6f
·
verified ·
1 Parent(s): d30410b

Update init.py

Browse files
Files changed (1) hide show
  1. init.py +4 -4
init.py CHANGED
@@ -3,15 +3,15 @@ from constants import EVAL_REQUESTS_PATH
3
  from pathlib import Path
4
  from huggingface_hub import HfApi, Repository
5
 
6
- TOKEN_HUB = os.environ.get("TOKEN_HUB", None)
7
- QUEUE_REPO = os.environ.get("QUEUE_REPO", None)
8
- QUEUE_PATH = os.environ.get("QUEUE_PATH", None)
9
 
10
  hf_api = HfApi(
11
  endpoint="https://huggingface.co",
12
  token=TOKEN_HUB,
13
  )
14
-
15
  # Language code for Persian
16
  PERSIAN_LANGUAGE_CODE = "fa"
17
 
 
3
  from pathlib import Path
4
  from huggingface_hub import HfApi, Repository
5
 
6
+ TOKEN_HUB = os.environ.get("TOKEN_HUB")
7
+ QUEUE_REPO = os.environ.get("QUEUE_REPO")
8
+ QUEUE_PATH = os.environ.get("QUEUE_PATH")
9
 
10
  hf_api = HfApi(
11
  endpoint="https://huggingface.co",
12
  token=TOKEN_HUB,
13
  )
14
+ print(TOKEN_HUB)
15
  # Language code for Persian
16
  PERSIAN_LANGUAGE_CODE = "fa"
17