Skip to content

Commit

Permalink
fix merge errors found by pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Nov 17, 2023
1 parent 6351752 commit c54a506
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(
self, weight: _Weight = StaticSynapse.default_parameters['weight'],
tau_c: float = 1000.0, tau_d: float = 200.0,
w_min: float = 0.0, w_max: float = 1.0):
self.__weight = weight
super().__init__(delay=1, weight=weight)
self.__tau_c = tau_c
self.__tau_d = tau_d
ts = SpynnakerDataView.get_simulation_time_step_ms()
Expand Down Expand Up @@ -286,6 +286,7 @@ def gen_matrix_params_size_in_bytes(self) -> int:
def changes_during_run(self) -> bool:
return False

@property
@overrides(AbstractPlasticSynapseDynamics.pad_to_length)
def pad_to_length(self) -> None:
return None
Expand Down

0 comments on commit c54a506

Please sign in to comment.