From 86aef5238d5d173457e3bf8cf9a803fe321536cd Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 15 Apr 2023 19:50:54 -0400 Subject: [PATCH] Hide actor nursery exit frame --- tractor/_supervise.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tractor/_supervise.py b/tractor/_supervise.py index 3085272..7f77784 100644 --- a/tractor/_supervise.py +++ b/tractor/_supervise.py @@ -302,7 +302,7 @@ async def _open_and_supervise_one_cancels_all_nursery( ) -> typing.AsyncGenerator[ActorNursery, None]: # TODO: yay or nay? - # __tracebackhide__ = True + __tracebackhide__ = True # the collection of errors retreived from spawned sub-actors errors: dict[tuple[str, str], BaseException] = {}