Skip to content

Commit

Permalink
Merge pull request #368 from SpiNNakerManchester/AbstractContextManager
Browse files Browse the repository at this point in the history
ConnectionListener does not need to be a  AbstractContextManager
  • Loading branch information
Christian-B committed Oct 13, 2023
2 parents e23c8fe + a87fea1 commit 3bdc6a0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spinnman/connections/connection_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
import logging
from threading import Thread
from concurrent.futures import ThreadPoolExecutor
from spinn_utilities.abstract_context_manager import AbstractContextManager
from spinn_utilities.log import FormatAdapter
from spinnman.exceptions import SpinnmanEOFException

Expand All @@ -24,7 +23,7 @@
_TIMEOUT = 1


class ConnectionListener(Thread, AbstractContextManager):
class ConnectionListener(Thread):
"""
Thread that listens to a connection and calls callbacks with new
messages when they arrive.
Expand Down

0 comments on commit 3bdc6a0

Please sign in to comment.