Remove unused arg

This commit is contained in:
2022-12-12 22:44:46 +01:00
parent 6fc58a49a5
commit a757b85bcc

View File

@ -213,12 +213,11 @@ def make_context_index(request) -> dict:
@app.post("/remove", response_class=HTMLResponse) @app.post("/remove", response_class=HTMLResponse)
async def remove_feed(request: Request, feed_url: str = Form()) -> RedirectResponse: async def remove_feed(feed_url: str = Form()) -> RedirectResponse:
""" """
Get a feed by URL. Get a feed by URL.
Args: Args:
request: The request.
feed_url: The feed to add. feed_url: The feed to add.
Returns: Returns: