From df420fcafc35497a98b3345ca9619b4b16649439 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 25 May 2021 09:17:53 -0400 Subject: [PATCH] Export portal type at top level --- tractor/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tractor/__init__.py b/tractor/__init__.py index 9ff62cc..5f9b319 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -19,6 +19,7 @@ from ._exceptions import RemoteActorError, ModuleNotExposed from ._debug import breakpoint, post_mortem from . import msg from ._root import run, run_daemon, open_root_actor +from ._portal import Portal __all__ = [ @@ -35,6 +36,7 @@ __all__ = [ 'msg', 'open_nursery', 'open_root_actor', + 'Portal', 'post_mortem', 'run', 'run_daemon',