From 15206453ab339e12c50a416a50fffef20f9e284d Mon Sep 17 00:00:00 2001 From: Christoph Stahl Date: Mon, 17 Feb 2025 18:34:36 +0100 Subject: [PATCH] Include Exception in typings --- typings/socketio/exceptions.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/typings/socketio/exceptions.pyi b/typings/socketio/exceptions.pyi index 8fece09..14d5feb 100644 --- a/typings/socketio/exceptions.pyi +++ b/typings/socketio/exceptions.pyi @@ -1 +1,2 @@ class ConnectionError(Exception): ... +class BadNamespaceError(Exception): ...