@@ -226,7 +226,6 @@ class AutoOptions(_Base):
226
226
children : ChoicesChildren = ChoicesChildren .embedded
227
227
package : Union [str , None , MISSING ] = MISSING ()
228
228
member_options : Optional ["AutoOptions" ] = None
229
- show_bases : bool = False
230
229
231
230
# for tracking fields users manually specify
232
231
# so we can tell them apart from defaults
@@ -275,8 +274,6 @@ class Auto(AutoOptions):
275
274
If specified, object lookup will be relative to this path.
276
275
member_options:
277
276
Options to apply to members. These can include any of the options above.
278
- show_bases:
279
- Whether to show the base classes of a class.
280
277
281
278
282
279
"""
@@ -327,8 +324,6 @@ class Doc(_Docable):
327
324
The loaded python object.
328
325
anchor:
329
326
An anchor named, used to locate this documentation on a [](`quartodoc.layout.Page`).
330
- show_bases:
331
- Whether to show the base classes of a class.
332
327
333
328
See Also
334
329
--------
@@ -340,7 +335,6 @@ class Doc(_Docable):
340
335
name : str
341
336
obj : Union [dc .Object , dc .Alias ]
342
337
anchor : str
343
- show_bases : bool = False
344
338
signature_name : SignatureOptions = "relative"
345
339
346
340
class Config :
@@ -356,7 +350,6 @@ def from_griffe(
356
350
anchor : str = None ,
357
351
flat : bool = False ,
358
352
signature_name : str = "relative" ,
359
- show_bases : bool = False ,
360
353
):
361
354
if members is None :
362
355
members = []
@@ -369,7 +362,6 @@ def from_griffe(
369
362
"obj" : obj ,
370
363
"anchor" : anchor ,
371
364
"signature_name" : signature_name ,
372
- "show_bases" : show_bases
373
365
}
374
366
375
367
if kind == "function" :
0 commit comments