davanstrien HF staff commited on
Commit
6245e44
·
verified ·
1 Parent(s): fbee6fd

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +2 -3
main.py CHANGED
@@ -29,9 +29,8 @@ FASTTEXT_PREFIX_LENGTH = 9 # fasttext labels are formatted like "__label__eng_L
29
 
30
  BASE_DATASETS_SERVER_URL = "https://datasets-server.huggingface.co"
31
  DEFAULT_FAST_TEXT_MODEL = "facebook/fasttext-language-identification"
32
- headers = {
33
- "authorization": f"Bearer ${HF_TOKEN}",
34
- }
35
  timeout = Timeout(60, read=120)
36
  client = Client(headers=headers, timeout=timeout)
37
  async_client = AsyncClient(headers=headers, timeout=timeout)
 
29
 
30
  BASE_DATASETS_SERVER_URL = "https://datasets-server.huggingface.co"
31
  DEFAULT_FAST_TEXT_MODEL = "facebook/fasttext-language-identification"
32
+ headers = {"Authorization": f"Bearer {HF_TOKEN}"}
33
+
 
34
  timeout = Timeout(60, read=120)
35
  client = Client(headers=headers, timeout=timeout)
36
  async_client = AsyncClient(headers=headers, timeout=timeout)