From 875c02576d84166f4d58dd17f99d455ea831512b Mon Sep 17 00:00:00 2001 From: Esteban Maya Date: Sun, 19 May 2024 17:39:06 -0500 Subject: [PATCH] Fix oauth2 scopes highlight example Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> --- docs/en/docs/advanced/security/oauth2-scopes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/docs/advanced/security/oauth2-scopes.md b/docs/en/docs/advanced/security/oauth2-scopes.md index e371b37cc..dfba32d2d 100644 --- a/docs/en/docs/advanced/security/oauth2-scopes.md +++ b/docs/en/docs/advanced/security/oauth2-scopes.md @@ -406,7 +406,7 @@ In this exception, we include the scopes required (if any) as a string separated !!! tip Prefer to use the `Annotated` version if possible. - ```Python hl_lines="105 108-116" + ```Python hl_lines="106 108-116" {!> ../../../docs_src/security/tutorial005.py!} ```