From b58ccf9629f66abd928b95d3d35f08fd645bcd49 Mon Sep 17 00:00:00 2001 From: TylerCG <117808427+TylerCG@users.noreply.github.com> Date: Tue, 22 Apr 2025 22:24:37 -0400 Subject: [PATCH] Update main.py --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index b8519f6..776892b 100644 --- a/app/main.py +++ b/app/main.py @@ -31,7 +31,7 @@ async def dropoutSeries(): return JSONResponse(content={"error": "File not found"}, status_code=404) @app.get("/dropoutDownload") -async def dropoutDownload(show: str, season: str, episode: str): +async def dropoutDownload(show: str, season: str, episode: str = None): download.dropout.show(show,season,episode) @app.get("/ydl")