Ask Solem 16 anni fa
parent
commit
4056f96286
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      celery/tests/test_task.py

+ 2 - 0
celery/tests/test_task.py

@@ -3,10 +3,12 @@ import unittest
 from celery import task
 from celery import registry
 
+
 # Task run functions can't be closures/lambdas, as they're pickled.
 def return_True(self, **kwargs):
     return True
 
+
 class TestCeleryTasks(unittest.TestCase):
 
     def createTaskCls(self, cls_name, task_name=None):