Skip to content

Commit

Permalink
docs(pandas): show methods from BasePandasBackend
Browse files Browse the repository at this point in the history
Otherwise it's pretty desolate out there.
  • Loading branch information
gforsyth authored and cpcloud committed Oct 31, 2023
1 parent 34eeca6 commit 20fd120
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/backends/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ def get_renderer(level: int) -> MdRenderer:

@cache
def get_backend(backend: str):
return get_object(f"ibis.backends.{backend}", "Backend")
if backend == "pandas":
return get_object(f"ibis.backends.{backend}", "BasePandasBackend")
else:
return get_object(f"ibis.backends.{backend}", "Backend")


def get_callable(obj, name):
Expand Down

0 comments on commit 20fd120

Please sign in to comment.