From 80f983818fcd4d0f1ca827c6db0dbb522cb39589 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sun, 29 Jan 2023 12:04:32 -0500 Subject: [PATCH] Ignore monkey patched `.send()` type annot --- tractor/_streaming.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_streaming.py b/tractor/_streaming.py index f24856c..b112956 100644 --- a/tractor/_streaming.py +++ b/tractor/_streaming.py @@ -323,7 +323,7 @@ class MsgStream(trio.abc.Channel): # caller can still conduct 2-way streaming using this # ``bstream`` handle transparently as though it was the msg # stream instance. - bstream.send = self.send + bstream.send = self.send # type: ignore yield bstream