Skip to content

Commit

Permalink
dropped support for Py 3.4 and added Py 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tclose committed Nov 16, 2018
1 parent 8b0d991 commit 4a9feff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pype9/simulate/common/cells/with_synapses.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,9 @@ class Synapse(BaseALObject, ContainerObject):
nineml_child = {'dynamics': None}
nineml_children = (AnalogPortConnection, EventPortConnection)

def __init__(self, name, dynamics, port_connections=None,
analog_port_connections=None, event_port_connections=None):
def __init__(self, name, dynamics=None, port_connections=None,
analog_port_connections=None,
event_port_connections=None):
super(Synapse, self).__init__()
ContainerObject.__init__(self)
self._name = validate_identifier(name)
Expand Down

0 comments on commit 4a9feff

Please sign in to comment.