From 031118488965a7b8a4a1998e53db89b33181644e Mon Sep 17 00:00:00 2001 From: Dalena Date: Thu, 1 Aug 2024 14:05:08 -0700 Subject: [PATCH] fix: missing comma (#2200) --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 475f9c9b54..850a5d7af9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -83,7 +83,7 @@ # Set some default to avoid unnecessary repetitious directives. autodoc_default_options = { "exclude-members": ( - "__repr__, __weakref__, __metaclass__, __init__, __format__, __new__, __str__, __dir__" + "__repr__, __weakref__, __metaclass__, __init__, __format__, __new__, __str__, __dir__," "model_config, model_fields, model_post_init, model_computed_fields," "__ape_extra_attributes__," )