Skip to content

Commit

Permalink
fix(vispy-plotter): correct variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
sanjayankur31 committed Oct 10, 2023
1 parent 2d62eb4 commit 1aa7de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyneuroml/plot/PlotMorphologyVispy.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ def plot_interactive_3D(
logger.debug("Got a point cell")
pos = list((list(positions.values())[0]).values())[0]
view_min = list(numpy.array(pos))
view_min = list(numpy.array(pos))
view_max = list(numpy.array(pos))

current_canvas, current_view = create_new_vispy_canvas(
view_min, view_max, title, theme=theme
Expand Down

0 comments on commit 1aa7de0

Please sign in to comment.