12 lines
301 B
Python
12 lines
301 B
Python
"""A thread for a control channel."""
|
|
|
|
from .thread import CONTROL_THREAD_NAME, BaseThread
|
|
|
|
|
|
class ControlThread(BaseThread):
|
|
"""A thread for a control channel."""
|
|
|
|
def __init__(self, **kwargs):
|
|
"""Initialize the thread."""
|
|
super().__init__(name=CONTROL_THREAD_NAME, **kwargs)
|