forked from goodboy/tractor
1
0
Fork 0

Drop unused walrus assign of `re`

multihomed
Tyler Goodlet 2024-01-02 11:21:20 -05:00
parent 00024181cd
commit ce7b8a5e18
1 changed files with 4 additions and 3 deletions

View File

@ -62,6 +62,7 @@ if TYPE_CHECKING:
log = get_logger(__name__) log = get_logger(__name__)
# TODO: make this a msgspec.Struct!
@dataclass @dataclass
class Context: class Context:
''' '''
@ -491,15 +492,15 @@ class Context:
if self._cancel_called: if self._cancel_called:
# XXX NOTE: ALWAYS RAISE any remote error here even if # XXX NOTE: ALWAYS RAISE any remote error here even if
# it's an expected `ContextCancelled` (after some local # it's an expected `ContextCancelled` due to a local
# task having called `.cancel()` ! # task having called `.cancel()`!
# #
# WHY: we expect the error to always bubble up to the # WHY: we expect the error to always bubble up to the
# surrounding `Portal.open_context()` call and be # surrounding `Portal.open_context()` call and be
# absorbed there (silently) and we DO NOT want to # absorbed there (silently) and we DO NOT want to
# actually try to stream - a cancel msg was already # actually try to stream - a cancel msg was already
# sent to the other side! # sent to the other side!
if re := self._remote_error: if self._remote_error:
raise self._remote_error raise self._remote_error
# XXX NOTE: if no `ContextCancelled` has been responded # XXX NOTE: if no `ContextCancelled` has been responded