Invincible14's picture
Upload 449 files
6f72e2b verified
"""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)