Skip to content

Commit 6b37350

Browse files
committed
Renamed element 'type' to 'Type'.
1 parent 06960de commit 6b37350

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def __enter__(self):
1111
self.object = self._queue.get()
1212
return self.object
1313

14-
def __exit__(self, type, value, traceback):
14+
def __exit__(self, Type, value, traceback):
1515
if self.object is not None:
1616
self._queue.put(self.object)
1717
self.object = None

0 commit comments

Comments
 (0)