Skip to content

Commit 8fa6c31

Browse files
committed
Ignore untyped return
1 parent 218c591 commit 8fa6c31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

geojson_pydantic/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def validate_bbox(cls, bbox: Optional[BBox]) -> Optional[BBox]:
5353
return bbox
5454

5555
@model_serializer(when_used="always", mode="wrap")
56-
def clean_model(self, serializer: Any, info: SerializationInfo) -> Any:
56+
def clean_model(self, serializer: Any, info: SerializationInfo): # type: ignore [no-untyped-def]
5757
"""Custom Model serializer to match the GeoJSON specification.
5858
5959
Used to remove fields which are optional but cannot be null values.

0 commit comments

Comments
 (0)