@@ -304,7 +304,7 @@ def setup(timestep: Optional[Union[float, Literal["auto"]]] = None,
304304 ~spinn_front_end_common.utilities.exceptions.ConfigurationException:
305305 if both ``n_chips_required`` and ``n_boards_required`` are used.
306306 """
307- # pylint: disable=global-statement,too-many-arguments
307+ # pylint: disable=global-statement
308308 # Check for "auto" values and None
309309 global __simulator
310310 if timestep is None :
@@ -395,7 +395,6 @@ def Projection(
395395 :return: a projection object for SpiNNaker
396396 :rtype: ~spynnaker.pyNN.models.projection.Projection
397397 """
398- # pylint: disable=too-many-arguments
399398 return SpiNNakerProjection (
400399 pre_synaptic_population = presynaptic_population ,
401400 post_synaptic_population = postsynaptic_population , connector = connector ,
@@ -555,7 +554,6 @@ def connect(pre: Population, post: Population, weight: float = 0.0,
555554 :param float p: probability
556555 :param ~pyNN.random.NumpyRNG rng: random number generator
557556 """
558- # pylint: disable=too-many-arguments
559557 SpynnakerDataView .check_user_can_act ()
560558 __pynn ["connect" ](pre , post , weight , delay , receptor_type , p , rng )
561559
0 commit comments