summaryrefslogtreecommitdiff
path: root/venv/lib/python3.11/site-packages/websockets/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'venv/lib/python3.11/site-packages/websockets/connection.py')
-rw-r--r--venv/lib/python3.11/site-packages/websockets/connection.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/venv/lib/python3.11/site-packages/websockets/connection.py b/venv/lib/python3.11/site-packages/websockets/connection.py
deleted file mode 100644
index 88bcda1..0000000
--- a/venv/lib/python3.11/site-packages/websockets/connection.py
+++ /dev/null
@@ -1,13 +0,0 @@
-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,
-)