From d15479baa42c0efcf12346deac0146821fca4471 Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Mon, 11 Nov 2024 16:16:11 +0000 Subject: [PATCH] ip_address is never None --- spinn_machine/tags/iptag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spinn_machine/tags/iptag.py b/spinn_machine/tags/iptag.py index d3948bb7..f742329a 100644 --- a/spinn_machine/tags/iptag.py +++ b/spinn_machine/tags/iptag.py @@ -63,7 +63,7 @@ def __init__( self._destination_y = destination_y @property - def ip_address(self) -> Optional[str]: + def ip_address(self) -> str: """ The IP address to which SDP packets with this tag will be sent. """