Skip to content

Commit

Permalink
fix doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Jul 27, 2023
1 parent eac7315 commit 12c284b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions navis/transforms/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,8 @@ def align_deform(x, target=None, sample=None, progress=True, **kwargs):
Examples
--------
>>> import navis
>>> n1, n2 = navis.align.example_neurons(2, kind='skeleton')
>>> n1_aligned, regs = navis.align_deform(n1, n2, sample=.2)
>>> n1, n2 = navis.example_neurons(2, kind='skeleton')
>>> n1_aligned, regs = navis.align.align_deform(n1, n2, sample=.2)
"""
try:
Expand Down Expand Up @@ -327,7 +327,7 @@ def align_pca(x, individually=True):
--------
>>> import navis
>>> n1, n2 = navis.example_neurons(2, kind='skeleton')
>>> n1_aligned, pcas = navis.align_pca(n1, n2)
>>> n1_aligned, pcas = navis.align.align_pca(n1, n2)
"""
try:
Expand Down

0 comments on commit 12c284b

Please sign in to comment.