control.py 301 B

1234567891011
  1. """A thread for a control channel."""
  2. from .thread import CONTROL_THREAD_NAME, BaseThread
  3. class ControlThread(BaseThread):
  4. """A thread for a control channel."""
  5. def __init__(self, **kwargs):
  6. """Initialize the thread."""
  7. super().__init__(name=CONTROL_THREAD_NAME, **kwargs)