randydev commited on
Commit
682fc89
·
verified ·
1 Parent(s): 18b6771

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +1 -1
main.py CHANGED
@@ -69,7 +69,7 @@ async def upload_to_catbox(dl_path: str) -> str:
69
  content_type="application/octet-stream"
70
  )
71
 
72
- async with session.post(base_url, data=form_data, proxy=proxy_url) as response:
73
  response.raise_for_status()
74
  return (await response.text()).strip()
75
 
 
69
  content_type="application/octet-stream"
70
  )
71
 
72
+ async with session.post(base_url, data=form_data) as response:
73
  response.raise_for_status()
74
  return (await response.text()).strip()
75