Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

spelling fixes and ignores #1411

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .pylint_dict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ rng
PLoS
rewirings
analog
stdev
or'ed
pn
config

# Our Python types
ApplicationGraph
Expand Down Expand Up @@ -83,6 +87,7 @@ AbstractCurrentSource
GeneratorData
EIEIOType
EIEIOPrefix
RandomDistribtuion

# Others' Python types
NumpyRNG
Expand Down
4 changes: 2 additions & 2 deletions spynnaker/pyNN/external_devices_models/spif_devices.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def delayed_command(self, get_payload, index=0):
""" Make a command to send to a SPIF device to set a register value,
where the value itself is currently unknown

:param func()->int get_payload:
:param callable()->int get_payload:
A function to call to get the payload later
:param int index:
The index of the register to use when using a multi-indexed
Expand Down Expand Up @@ -311,7 +311,7 @@ def set_distiller_mask_delayed(index, mask_func):
peripheral routes in the SpiNNaker FPGA.

:param int index: The index of the channel to set (0-5)
:param func(int)->int mask_func:
:param callable(int)->int mask_func:
The function to call to set the mask - takes index as argument
:rtype: MulticastCommand
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from spynnaker.pyNN.models.defaults import defaults, default_initial_values


# pylint: disable=wrong-spelling-in-docstring
@defaults
class EIFConductanceAlphaPopulation(object):
"""
Expand Down