소스 검색

Remove no-op constructor

Ask Solem 16 년 전
부모
커밋
9930eba71c
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      celery/backends/base.py

+ 0 - 3
celery/backends/base.py

@@ -5,9 +5,6 @@ from celery.timer import TimeoutTimer
 class BaseBackend(object):
     """The base backend class. All backends should inherit from this."""
 
-    def __init__(self):
-        pass
-
     def store_result(self, task_id, result, status):
         """Store the result and status of a task."""
         raise NotImplementedError(