From a18663213aaf04f0cfe33548435ee975e2a4bd89 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Mon, 16 Oct 2023 15:45:02 -0400 Subject: [PATCH] Add comments around diff between `C/context` refs --- tractor/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tractor/__init__.py b/tractor/__init__.py index aa262105..64c81e99 100644 --- a/tractor/__init__.py +++ b/tractor/__init__.py @@ -23,8 +23,8 @@ from exceptiongroup import BaseExceptionGroup from ._clustering import open_actor_cluster from ._ipc import Channel from ._context import ( - Context, - context, + Context, # the type + context, # a func-decorator ) from ._streaming import ( MsgStream,