Update main.py
Browse files
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
|
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 |
|