From 30228ff61b8921f1886dfd16cd699616d737473c Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Tue, 2 Apr 2024 15:10:48 +0100 Subject: [PATCH] XY as a tuple --- spinnman/messages/sdp/sdp_header.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spinnman/messages/sdp/sdp_header.py b/spinnman/messages/sdp/sdp_header.py index 370e1ab81..538855a63 100644 --- a/spinnman/messages/sdp/sdp_header.py +++ b/spinnman/messages/sdp/sdp_header.py @@ -331,7 +331,7 @@ def get_physical_cpu_id(self) -> str: :rtype: str """ return SpiNNManDataView.get_physical_core_string( - self._destination_chip_x, self._destination_chip_y, + (self._destination_chip_x, self._destination_chip_y), self._destination_cpu) def update_for_send(self, source_x: int, source_y: int):