Skip to content

Commit bdd5901

Browse files
committed
fix: add None value in Links type
1 parent 12df5f1 commit bdd5901

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jsonapi_pydantic/v1_0/links.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ def check_all_values(cls, values: dict) -> dict:
2020
return values
2121

2222

23-
Links = Dict[str, Union[AnyUrl, Link]]
23+
Links = Dict[str, Union[AnyUrl, Link, None]]
2424

2525
__all__ = ["Link"]

0 commit comments

Comments
 (0)