Update index.py

This commit is contained in:
Mr Chen 2024-12-04 01:57:01 +08:00
parent f338d8bd8e
commit 869a321c14
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ class classApi:
try:
url = self.__MW_PANEL + '/files/upload_segment'
res = self._REQUESTS.post(url, data=pdata, files=files, headers={
res = requests.post(url, data=pdata, files=files, headers={
'app-id':self.__MW_APP_ID,
'app-secret':self.__MW_APP_SECRET
},timeout=30000)