Skip to content

Commit

Permalink
Update nodelist.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sgamiye committed Jun 20, 2023
1 parent c334b3a commit 1b7ba27
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion share/lib/python/neuron/rxd/nodelist.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ def __init__(self, items):
"""Constructs a NodeList from items, a python iterable containing Node objects."""
if isinstance(items, abc.Generator) or isinstance(items, abc.Iterator):
items = list(items)
print("1")

if items == [] or all(isinstance(item, Node) for item in items):
list.__init__(self, items)
Expand Down

0 comments on commit 1b7ba27

Please sign in to comment.