Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Dec 4, 2023
1 parent 099be16 commit f1fd5da
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spinn_utilities/ranged/slice_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def iter_all_values(self, key: _Keys = None, update_safe: bool = False):
update_safe=update_safe)

@overrides(AbstractDict.set_value)
def set_value(
self, key: str, value: _ValueType, use_list_as_value: bool = False):
def set_value(self, key: str, value: _ValueType,
use_list_as_value: bool = False):
self._range_dict.get_list(key).set_value_by_slice(
slice_start=self._start, slice_stop=self._stop, value=value,
use_list_as_value=use_list_as_value)
Expand Down
2 changes: 1 addition & 1 deletion spinn_utilities/see.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@ def __init__(

def _verify_types(self, method_args, super_args, all_args):
# dont check types for see
pass
pass
2 changes: 1 addition & 1 deletion unittests/abstract_base/abstract_has_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from typing import Any
from spinn_utilities.abstract_base import (
AbstractBase, abstractproperty, abstractmethod)
AbstractBase, abstractmethod)


class AbstractHasConstraints(object, metaclass=AbstractBase):
Expand Down

0 comments on commit f1fd5da

Please sign in to comment.