From 3f16c3b8c400ec0409766c776d619b1659ed732e Mon Sep 17 00:00:00 2001 From: Volker Stampa Date: Tue, 27 Feb 2024 11:11:52 +0100 Subject: [PATCH] Exclude another BaseModel field Does not add useful information to the doc and actually causes issues when generating the doc --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index c6a236cf2..0ee2b4f85 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ "show-inheritance": True, "inherited-members": "BaseModel,RuntimeError", # BaseModel attributes where the documentation does not add a lot of value - "exclude-members": "model_config,model_fields", + "exclude-members": "model_config,model_fields,model_computed_fields", } templates_path = ["_templates"]