Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hackathon: dask backend #111

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
combine_neurons: fix bug in error message
  • Loading branch information
aschampion committed Oct 11, 2022
commit cbc7a061b788092ca0028c35343e1dfe5c2235c8
2 changes: 1 addition & 1 deletion navis/morpho/manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ def combine_neurons(*x: Union[Sequence[NeuronObject], 'core.NeuronList']
elif isinstance(nl[0], core.VoxelNeuron):
raise TypeError('Combining VoxelNeuron not (yet) supported')
else:
raise TypeError(f'Unable to combine {ty}')
raise TypeError(f'Unable to combine {type(nl[0])}')

return x

Expand Down