Remove unused arg
This commit is contained in:
parent
6fc58a49a5
commit
a757b85bcc
1 changed files with 1 additions and 2 deletions
|
|
@ -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:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue