Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from pyNN.utility.plotting import Figure, Panel


class PyNNScript(object):
class PyNNScript:
"""
the class which contains the pynn script
"""
Expand Down Expand Up @@ -238,7 +238,7 @@ def receive_spikes(label, time, neuron_ids):
print(f"Received spike at time {time} from {label} - {neuron_id}")


class GUI(object):
class GUI:
""" Simple GUI to demonstrate live injection of the spike io script.
"""

Expand Down
2 changes: 1 addition & 1 deletion examples/extra_models_examples/vogels_2011.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
N_BOARDS = 1


class Vogels2011(object):
class Vogels2011:
"""
This example uses the sPyNNaker implementation of the inhibitory
Plasticity rule developed by Vogels, Sprekeler, Zenke et al (2011)
Expand Down
2 changes: 1 addition & 1 deletion sudoku/set_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
from sudoku.utils import get_rates, puzzles


class GUI(object):
class GUI:
"""
A Gui for setting the numbers in the puzzle.
"""
Expand Down
Loading