Skip to content

Commit

Permalink
put decorators in sep module to avoid circ. imports & pickling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed Jun 4, 2022
1 parent 1f05303 commit 8d5988e
Show file tree
Hide file tree
Showing 4 changed files with 556 additions and 519 deletions.
7 changes: 4 additions & 3 deletions navis/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@
from .iterables import make_iterable, make_non_iterable, is_iterable, multi_split
from .misc import (is_jupyter, set_loggers, set_pbars, unpack_neurons,
set_default_connector_colors, parse_objects,
is_url, make_url, lock_neuron, make_volume, sizeof_fmt,
map_neuronlist, map_neuronlist_df, round_smart,
meshneuron_skeleton, is_blender, check_vispy)
is_url, make_url, make_volume, sizeof_fmt,
round_smart, is_blender, check_vispy)
from .validate import validate_options, validate_table
from .eval import (eval_node_ids, eval_neurons, eval_id, eval_conditions,
is_mesh, is_numeric, eval_param)
from .exceptions import (ConstructionError, VolumeError, CMTKError)
from .cv import (patch_cloudvolume)
from .decorators import (meshneuron_skeleton, map_neuronlist_df, map_neuronlist,
lock_neuron)

__all__ = ['set_loggers', 'set_pbars', 'set_default_connector_colors',
'patch_cloudvolume']
Loading

0 comments on commit 8d5988e

Please sign in to comment.