From 38f9d35deebdc93e9edb27d78c92f2afb0e10f5d Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Thu, 13 Oct 2022 15:42:33 -0400 Subject: [PATCH] Fix errors table type annot --- tractor/_supervise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_supervise.py b/tractor/_supervise.py index 1b46433..62b7a86 100644 --- a/tractor/_supervise.py +++ b/tractor/_supervise.py @@ -83,7 +83,7 @@ class ActorNursery: actor: Actor, ria_nursery: trio.Nursery, da_nursery: trio.Nursery, - errors: dict[tuple[str, str], Exception], + errors: dict[tuple[str, str], BaseException], ) -> None: # self.supervisor = supervisor # TODO self._actor: Actor = actor