From 9571f60a6d973c27c86aa54c5709d22754e3b48b Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Tue, 17 Jul 2018 11:57:27 -0400 Subject: [PATCH] Expose channel in public api --- tractor/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/__init__.py b/tractor/__init__.py index ec055ad..3426b81 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -7,7 +7,7 @@ from functools import partial import trio from .log import get_console_log, get_logger, get_loglevel -from ._ipc import _connect_chan +from ._ipc import _connect_chan, Channel from ._actor import ( Actor, _start_actor, Arbiter, get_arbiter, find_actor ) @@ -18,7 +18,7 @@ from ._portal import RemoteActorError __all__ = [ 'current_actor', 'find_actor', 'get_arbiter', 'open_nursery', - 'RemoteActorError', + 'RemoteActorError', 'Channel', ]