Spaces:
Sleeping
Sleeping
Your Name
commited on
Commit
·
a9b28c4
1
Parent(s):
25ac68e
Fix requests import type checking in llm_wrapper.py
Browse files- llm_wrapper.py +1 -1
llm_wrapper.py
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
import os
|
| 3 |
import sys
|
| 4 |
import logging
|
| 5 |
-
import requests
|
| 6 |
|
| 7 |
# Add current directory to path for imports
|
| 8 |
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|
|
|
|
| 2 |
import os
|
| 3 |
import sys
|
| 4 |
import logging
|
| 5 |
+
import requests # type: ignore[import-untyped]
|
| 6 |
|
| 7 |
# Add current directory to path for imports
|
| 8 |
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
|