From f9e8c64f12e4f4baa97d07d7dbbb1f3e2fdcbbf6 Mon Sep 17 00:00:00 2001 From: kgolawski Date: Tue, 22 Nov 2022 13:33:48 +0100 Subject: [PATCH] Fix code typo in docs (#4776) --- docs/examples/postponed_annotations_broken.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/postponed_annotations_broken.py b/docs/examples/postponed_annotations_broken.py index cdd7db8..b24873f 100644 --- a/docs/examples/postponed_annotations_broken.py +++ b/docs/examples/postponed_annotations_broken.py @@ -4,7 +4,7 @@ from pydantic.errors import PydanticUserError def this_is_broken(): - from pydantic import HttpUrl # HttpUrl is defined in functuon local scope + from pydantic import HttpUrl # HttpUrl is defined in function local scope class Model(BaseModel): a: HttpUrl