Skip to content

Commit

Permalink
Merge pull request #271 from SpiNNakerManchester/fix_simulator_vertex
Browse files Browse the repository at this point in the history
Fix simulator vertex
  • Loading branch information
rowleya authored Mar 8, 2024
2 parents e15a836 + 3772dc8 commit 445b7f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ __pycache__
**/modified_src/
**/Debug/
*.dict
/.mypy_cache/
2 changes: 1 addition & 1 deletion spinnaker_graph_front_end/utilities/simulator_vertex.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def __init__(self, label, binary_name: str, vertex_slice=None):
implements.
:type vertex_slice: ~pacman.model.graphs.common.Slice or None
"""
super().__init__(label)
super().__init__(label, vertex_slice=vertex_slice)
self._binary_name = binary_name
if not binary_name.lower().endswith(".aplx"):
log.warning("APLX protocol used but name not matching; "
Expand Down

0 comments on commit 445b7f5

Please sign in to comment.