most of our scripts are in the format
import pyNN.spiNNaker as sim
sim.setup(timestep=1.0, n_boards_required=1)
pop_1 = sim.Population(1, sim.IF_curr_exp(), label="pop_1")
But pycharm if you attempt to go to sim.IF_curr_exp() it only goes to init.py
And from there it is hard to find the code
bigger worry is that mypy also has trouble following the connection.
most of our scripts are in the format
import pyNN.spiNNaker as sim
sim.setup(timestep=1.0, n_boards_required=1)
pop_1 = sim.Population(1, sim.IF_curr_exp(), label="pop_1")
But pycharm if you attempt to go to sim.IF_curr_exp() it only goes to init.py
And from there it is hard to find the code
bigger worry is that mypy also has trouble following the connection.