Skip to content

Commit

Permalink
Fix pydantic people type annotation for markdown replacements (#8402)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxiangzhuang committed Dec 19, 2023
1 parent 3d2ebef commit 3bc5a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/plugins/main.py
Expand Up @@ -406,7 +406,7 @@ def devtools_example(markdown: str, page: Page) -> str | None:
)


def populate_pydantic_people(markdown: str, page: Page) -> None:
def populate_pydantic_people(markdown: str, page: Page) -> str | None:
if page.file.src_uri != 'pydantic_people.md':
return None

Expand Down

0 comments on commit 3bc5a52

Please sign in to comment.