Explorar el Código

typo: change local variable name from map to mapping (#5094)

tothegump hace 6 años
padre
commit
56191ca1ec
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      celery/backends/asynchronous.py

+ 2 - 2
celery/backends/asynchronous.py

@@ -176,8 +176,8 @@ class AsyncBackendMixin(object):
         return result
 
     def _remove_pending_result(self, task_id):
-        for map in self._pending_results:
-            map.pop(task_id, None)
+        for mapping in self._pending_results:
+            mapping.pop(task_id, None)
 
     def on_result_fulfilled(self, result):
         self.result_consumer.cancel_for(result.id)