fix: flake8 trailing blank lines

Remove trailing blank line at EOF to satisfy flake8 W391.
This commit is contained in:
Arjun (OpenClaw)
2026-02-07 19:19:40 +00:00
parent e73b6c0f8c
commit 1ccc4c478f
3 changed files with 0 additions and 3 deletions

View File

@@ -71,4 +71,3 @@ async def get_markdown(
except Exception as 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)

View File

@@ -18,4 +18,3 @@ class SoulsDirectoryMarkdownResponse(BaseModel):
handle: str
slug: 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="thedaviddias", limit=20) == [refs[0], refs[1]]