Skip to content

Commit

Permalink
[FIX] Fixed minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
VinceBaz committed Feb 9, 2024
1 parent 97284f8 commit e695b97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neuromaps/nulls/nulls.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ def burt2018(data, atlas='fsaverage', density='10k', parcellation=None, # noqa:
return _make_surrogates(data, 'burt2018', atlas=atlas, density=density,
parcellation=parcellation, n_perm=n_perm,
seed=seed, n_proc=n_proc, distmat=distmat,
tempdir=None, **kwargs)
tempdir=tempdir, **kwargs)


burt2018.__doc__ = """\
Expand Down Expand Up @@ -699,7 +699,7 @@ def moran(data, atlas='fsaverage', density='10k', parcellation=None, # noqa: D10
return _make_surrogates(data, 'moran', atlas=atlas, density=density,
parcellation=parcellation, n_perm=n_perm,
seed=seed, n_proc=n_proc, distmat=distmat,
tempdir=None, **kwargs)
tempdir=tempdir, **kwargs)


moran.__doc__ = """\
Expand Down

0 comments on commit e695b97

Please sign in to comment.