Skip to content

Commit 769c9ac

Browse files
authored
Rename variable for clarity in gateway_base.py
1 parent 3c50079 commit 769c9ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execnet/gateway_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1007,7 +1007,7 @@ def _no_longer_opened(self, id: int) -> None:
10071007
except KeyError:
10081008
pass
10091009
try:
1010-
callback, endmarker, strconfig = self._callbacks.pop(id)
1010+
callback, endmarker, _strconfig = self._callbacks.pop(id)
10111011
except KeyError:
10121012
pass
10131013
else:
@@ -1037,7 +1037,7 @@ def _local_receive(self, id: int, data) -> None:
10371037
# executes in receiver thread
10381038
channel = self._channels.get(id)
10391039
try:
1040-
callback, endmarker, strconfig = self._callbacks[id]
1040+
callback, _endmarker, strconfig = self._callbacks[id]
10411041
except KeyError:
10421042
queue = channel._items if channel is not None else None
10431043
if queue is None:

0 commit comments

Comments
 (0)