Skip to content

Commit

Permalink
docs: make help() calls static so as to not block tests
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Sep 4, 2024
1 parent 87eacd5 commit 24d334d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions docs/examples/plot_00_basic_neurons.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,13 @@
#
# Try typing in "`n.`" and hitting tab: most attributes and functions are accessible via autocompletion.
# If you don't know what a function does, check out the documentation using `help()` or via the [API documentation](../../api):

# %%
help(navis.TreeNeuron.root)

# %%
help(navis.TreeNeuron.downsample)
# ```python
# help(navis.TreeNeuron.root)
# ```
#
# ```python
# help(navis.TreeNeuron.downsample)
# ```

# %%
# You will notice that many {{ navis }} functions that accept neurons have an `inplace` parameter. This is analogous to pandas:
Expand Down

0 comments on commit 24d334d

Please sign in to comment.