Files
MLPproject/.venv/lib/python3.12/site-packages/ipykernel/control.py
2025-10-23 15:44:32 +02:00

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)