Skip to content

Commit

Permalink
typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Jan 15, 2024
1 parent 95ea0e1 commit 1d2473c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def get_in_coming_slices(self) -> List[Slice]:

@overrides(AbstractSplitterCommon.machine_vertices_for_recording)
def machine_vertices_for_recording(
self, variable_to_record) -> List[SDRAMMachineVertex]:
self, variable_to_record: str) -> List[SDRAMMachineVertex]:
return [self._pre_vertex].extend(self._post_vertices)

@overrides(AbstractSplitterCommon.reset_called)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def get_in_coming_slices(self) -> List[Slice]:

@overrides(AbstractSplitterCommon.machine_vertices_for_recording)
def machine_vertices_for_recording(
self, variable_to_record) -> List[SourceSegmentedSDRAMMachinePartition]:
self, variable_to_record: str) -> List[SourceSegmentedSDRAMMachinePartition]:
return [self._post_vertex].extend(self._pre_vertices)

@overrides(AbstractSplitterCommon.reset_called)
Expand Down

0 comments on commit 1d2473c

Please sign in to comment.