Skip to content

Commit b2857c1

Browse files
authored
Remove Property model_computed_fields From Documentation (#973)
add model_computed_fields to skip_pydantic_internals
1 parent ce8ae72 commit b2857c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def skip_pydantic_internals(app, what, name, obj, skip, options):
8888
This processor is used to filter out Pydantic internal attributes from the
8989
documentation.
9090
"""
91-
if name in ("model_fields", "model_config"):
91+
if name in ("model_fields", "model_config", "model_computed_fields"):
9292
return True
9393
return skip
9494

0 commit comments

Comments
 (0)