Files
dehumidify_ctrl/code/.venv/lib/python3.12/site-packages/websockets/connection.py
Jonas Zeunert 4309a2d185 Add Code
2024-08-16 21:57:55 +02:00

14 lines
333 B
Python

from __future__ import annotations
import warnings
# lazy_import doesn't support this use case.
from .protocol import SEND_EOF, Protocol as Connection, Side, State # noqa: F401
warnings.warn(
"websockets.connection was renamed to websockets.protocol "
"and Connection was renamed to Protocol",
DeprecationWarning,
)