From 8fbf444a48656f2f0e3e1d6b39622f4ee4a16196 Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Tue, 23 Sep 2025 16:48:55 +0200 Subject: [PATCH] Use `os.sep` instead of hardcoded `/` in `reference/` --- scripts/docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs.py b/scripts/docs.py index 769a49877..54b80026e 100644 --- a/scripts/docs.py +++ b/scripts/docs.py @@ -30,7 +30,7 @@ missing_translation_snippet = """ """ non_translated_sections = ( - "reference/", + f"reference{os.sep}", "release-notes.md", "fastapi-people.md", "external-links.md",