lint: fix W391 trailing blank line

This commit is contained in:
abhi1693
2026-02-07 19:20:04 +00:00
parent da1559fc98
commit 1d0c11b69c
3 changed files with 0 additions and 3 deletions

View File

@@ -71,4 +71,3 @@ async def get_markdown(
except Exception as exc: except Exception as exc:
raise HTTPException(status_code=status.HTTP_502_BAD_GATEWAY, detail=str(exc)) from exc raise HTTPException(status_code=status.HTTP_502_BAD_GATEWAY, detail=str(exc)) from exc
return SoulsDirectoryMarkdownResponse(handle=safe_handle, slug=safe_slug, content=content) return SoulsDirectoryMarkdownResponse(handle=safe_handle, slug=safe_slug, content=content)

View File

@@ -18,4 +18,3 @@ class SoulsDirectoryMarkdownResponse(BaseModel):
handle: str handle: str
slug: str slug: str
content: str content: str

View File

@@ -26,4 +26,3 @@ def test_search_souls_matches_handle_or_slug() -> None:
] ]
assert search_souls(refs, query="writer", limit=20) == [refs[1]] assert search_souls(refs, query="writer", limit=20) == [refs[1]]
assert search_souls(refs, query="thedaviddias", limit=20) == [refs[0], refs[1]] assert search_souls(refs, query="thedaviddias", limit=20) == [refs[0], refs[1]]