Skip to content

Commit

Permalink
more error fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Aug 4, 2023
1 parent 33b44e6 commit ac116bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spinnman/transceiver/base_transceiver.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,8 @@ def _check_connection(
@overrides(AbstractTransceiver.send_sdp_message)
def send_sdp_message(self, message, connection=None):
if connection is None:
self._scamp_connection[random.randint(
0, len(self._scamp_connection) - 1)]
self._scamp_connections[random.randint(
0, len(self._scamp_connections) - 1)]
else:
connection_to_use = connection
connection_to_use.send_sdp_message(message)
Expand Down

0 comments on commit ac116bf

Please sign in to comment.