File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -155,14 +155,15 @@ def setup(app: Sphinx) -> None:
155
155
app .add_role ("breaking" , releases .issues_role )
156
156
157
157
158
- ignored_modules = [
158
+ ignored_targets = [
159
159
"async_rediscache" ,
160
+ "pydantic.main.BaseModel"
160
161
]
161
162
162
163
# nitpick raises warnings as errors. This regex tells nitpick to ignore any warnings that match this regex.
163
- # This is a workaround for modules that do not have docs that can be linked out to.
164
+ # This is a workaround for modules/classes that do not have docs that can be linked out to.
164
165
nitpick_ignore_regex = [
165
- ("py:.*" , "|" .join ([f".*{ entry } .*" for entry in ignored_modules ])),
166
+ ("py:.*" , "|" .join ([f".*{ entry } .*" for entry in ignored_targets ])),
166
167
]
167
168
168
169
# -- Extension configuration -------------------------------------------------
You can’t perform that action at this time.
0 commit comments