From 97bfbdbc1c1979a2cd875d53494b1cc51a89a49a Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Fri, 5 Apr 2024 16:32:15 -0400 Subject: [PATCH] Expose `MsgTypeError` from pkg --- tractor/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tractor/__init__.py b/tractor/__init__.py index c7d21c9..0f2bdd6 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -44,9 +44,10 @@ from ._state import ( is_root_process as is_root_process, ) from ._exceptions import ( - RemoteActorError as RemoteActorError, - ModuleNotExposed as ModuleNotExposed, ContextCancelled as ContextCancelled, + ModuleNotExposed as ModuleNotExposed, + MsgTypeError as MsgTypeError, + RemoteActorError as RemoteActorError, ) from .devx import ( breakpoint as breakpoint,