Skip to content

Commit 9849987

Browse files
committed
undo
1 parent 87f4d5d commit 9849987

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

quartodoc/builder/blueprint.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ def enter(self, el: Auto):
330330
children,
331331
flat=is_flat,
332332
signature_name=el.signature_name,
333-
show_bases=el.show_bases
334333
)
335334

336335
@staticmethod

quartodoc/layout.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ class AutoOptions(_Base):
226226
children: ChoicesChildren = ChoicesChildren.embedded
227227
package: Union[str, None, MISSING] = MISSING()
228228
member_options: Optional["AutoOptions"] = None
229-
show_bases: bool = False
230229

231230
# for tracking fields users manually specify
232231
# so we can tell them apart from defaults
@@ -275,8 +274,6 @@ class Auto(AutoOptions):
275274
If specified, object lookup will be relative to this path.
276275
member_options:
277276
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.
280277
281278
282279
"""
@@ -327,8 +324,6 @@ class Doc(_Docable):
327324
The loaded python object.
328325
anchor:
329326
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.
332327
333328
See Also
334329
--------
@@ -340,7 +335,6 @@ class Doc(_Docable):
340335
name: str
341336
obj: Union[dc.Object, dc.Alias]
342337
anchor: str
343-
show_bases: bool = False
344338
signature_name: SignatureOptions = "relative"
345339

346340
class Config:
@@ -356,7 +350,6 @@ def from_griffe(
356350
anchor: str = None,
357351
flat: bool = False,
358352
signature_name: str = "relative",
359-
show_bases: bool = False,
360353
):
361354
if members is None:
362355
members = []
@@ -369,7 +362,6 @@ def from_griffe(
369362
"obj": obj,
370363
"anchor": anchor,
371364
"signature_name": signature_name,
372-
"show_bases": show_bases
373365
}
374366

375367
if kind == "function":

0 commit comments

Comments
 (0)