We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1134421 commit 0072859Copy full SHA for 0072859
1 file changed
nrepl/__init__.py
@@ -40,7 +40,7 @@ def run (_):
40
for incoming in self._IO:
41
with self._watches_lock:
42
watches = dict(self._watches)
43
- for key, (pred, callback) in self._watches.items():
+ for key, (pred, callback) in watches.items():
44
if pred(incoming):
45
callback(incoming, self, key)
46
self._thread = Monitor()
0 commit comments