Skip to content

Commit

Permalink
fix include_flux on nodelist
Browse files Browse the repository at this point in the history
  • Loading branch information
rgourdine committed Oct 20, 2023
1 parent 5043108 commit e5b4d87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion share/lib/python/neuron/rxd/nodelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ def diff(self, value):

def include_flux(self, *args, **kwargs):
for node in self:
node.include_flux(args, kwargs)
# Unpack arguments for each individual call
node.include_flux(*args, **kwargs)

def value_to_grid(self):
"""Returns a regular grid with the values of the 3d nodes in the list.
Expand Down

0 comments on commit e5b4d87

Please sign in to comment.