Skip to content

Commit

Permalink
Flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
dkfellows committed May 16, 2018
1 parent 6ef4a28 commit 505a20e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion spynnaker8/models/data_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ def save_data(self, variable, data, indexes, n_neurons, units,
:type data: nparray
:param indexes: population indexes for which data should be returned
:type indexes: nparray
:type nparray
:param n_neurons: Number of neurons in the population.\
Regardless of if they where recording or not.
:type n_neurons: int
Expand Down
4 changes: 2 additions & 2 deletions spynnaker8/models/populations/idmixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def as_view(self):
def __eq__(self, other):
if not isinstance(other, IDMixin):
return False
return self._population == other._population and self._id == \
other._id
return self._population == other._population and \
self._id == other._id

def __str__(self):
return str(self._population) + "[" + str(self._id) + "]"
Expand Down

0 comments on commit 505a20e

Please sign in to comment.