aneeshm44's picture
Add files using upload-large-folder tool
f618189 verified
Raw
History Blame Contribute Delete
301 Bytes
"""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)