Skip to content

Commit

Permalink
allow spalloc to support any version in principle
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Aug 4, 2023
1 parent d053d76 commit 4f0ef55
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spinnman/spalloc/spalloc_job.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from spinn_utilities.abstract_base import AbstractBase, abstractmethod
from spinn_utilities.abstract_context_manager import AbstractContextManager
from spinnman.constants import SCP_SCAMP_PORT
from spinnman.transceiver.version5Transceiver import Version5Transceiver
from spinnman.transceiver.abstract_transceiver import AbstractTransceiver
from spinnman.connections.udp_packet_connections import UDPConnection
from .spalloc_state import SpallocState
from .spalloc_boot_connection import SpallocBootConnection
Expand Down Expand Up @@ -121,12 +121,12 @@ def open_udp_listener_connection(self) -> UDPConnection:
"""

@abstractmethod
def create_transceiver(self) -> Version5Transceiver:
def create_transceiver(self) -> AbstractTransceiver:
"""
Create a transceiver that will talk to this job. The transceiver will
only be configured to talk to the SCP ports of the boards of the job.
:rtype: Transceiver
:rtype: AbstractTransceiver
"""

@abstractmethod
Expand Down

0 comments on commit 4f0ef55

Please sign in to comment.