From 9f20dc8b067347c48b949452d7dfe1efb63bb1df Mon Sep 17 00:00:00 2001 From: "Christian Y. Brenninkmeijer" Date: Wed, 13 Nov 2024 08:34:36 +0000 Subject: [PATCH] remove unused import --- spinn_machine/tags/abstract_tag.py | 2 -- spinn_machine/tags/iptag.py | 2 +- spinn_machine/tags/reverse_iptag.py | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/spinn_machine/tags/abstract_tag.py b/spinn_machine/tags/abstract_tag.py index 46daf04e..28b9f084 100644 --- a/spinn_machine/tags/abstract_tag.py +++ b/spinn_machine/tags/abstract_tag.py @@ -12,8 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from typing import Optional - class AbstractTag(object): """ diff --git a/spinn_machine/tags/iptag.py b/spinn_machine/tags/iptag.py index 36d683cf..7d4dd2bd 100644 --- a/spinn_machine/tags/iptag.py +++ b/spinn_machine/tags/iptag.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -from typing import Any, Optional +from typing import Any from .abstract_tag import AbstractTag diff --git a/spinn_machine/tags/reverse_iptag.py b/spinn_machine/tags/reverse_iptag.py index 8677f806..a0f17c76 100644 --- a/spinn_machine/tags/reverse_iptag.py +++ b/spinn_machine/tags/reverse_iptag.py @@ -12,7 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -from typing_extensions import Optional from .abstract_tag import AbstractTag