File size: 301 Bytes
6f72e2b
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""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)