Skip to content

Commit

Permalink
Fix warning in create_inhibit_node.
Browse files Browse the repository at this point in the history
Fixes #86.
  • Loading branch information
jgosmann committed Nov 3, 2017
1 parent ec30246 commit a79504f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nengo_spa/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def create_inhibit_node(net, strength=2., **kwargs):
Node that can be connected to to provide an inhibitory signal to the
network.
"""
inhibit_node = nengo.Node(size_in=1, size_out=1)
inhibit_node = nengo.Node(size_in=1)
for e in net.all_ensembles:
nengo.Connection(
inhibit_node, e.neurons,
Expand Down

0 comments on commit a79504f

Please sign in to comment.