Skip to content

Commit

Permalink
fix removing double typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jan 21, 2025
1 parent 93cd9f5 commit 20d0b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spynnaker/pyNN/models/neuron/synapse_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ def _get_row_data(

# Blank the plastic data
fp_data = numpy.zeros((n_rows, 0), dtype=uint32)
pp_data: Union[NDArray[uint32], List[NDArray[uint32]]]
pp_data = numpy.zeros((n_rows, 0), dtype=uint32)
fp_size: NDArray[uint32]
fp_size = numpy.zeros((n_rows, 1), dtype=uint32)
pp_size: NDArray[uint32]
Expand Down

0 comments on commit 20d0b33

Please sign in to comment.