From cb6ccf4c079ddf4b4011acd71d60ebd557fbc099 Mon Sep 17 00:00:00 2001 From: honglei Date: Fri, 25 Aug 2023 22:11:11 +0800 Subject: [PATCH] forgot black it --- tests/test_nullable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_nullable.py b/tests/test_nullable.py index 6d3df54..041a889 100644 --- a/tests/test_nullable.py +++ b/tests/test_nullable.py @@ -57,7 +57,7 @@ def test_nullable_fields(clear_sqlmodel, caplog): str_default_str_nullable: str = Field(default="default", nullable=True) str_default_ellipsis_non_nullable: str = Field(default=..., nullable=False) str_default_ellipsis_nullable: str = Field(default=..., nullable=True) - base_url : AnyUrl + base_url: AnyUrl optional_url: Optional[MoveSharedUrl] = Field(default=None, description="") url: MoveSharedUrl annotated_url: Annotated[MoveSharedUrl, Field(description="")]