We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06960de commit 6b37350Copy full SHA for 6b37350
pool.py
@@ -11,7 +11,7 @@ def __enter__(self):
11
self.object = self._queue.get()
12
return self.object
13
14
- def __exit__(self, type, value, traceback):
+ def __exit__(self, Type, value, traceback):
15
if self.object is not None:
16
self._queue.put(self.object)
17
self.object = None
0 commit comments