(self, run_every: float | timedelta | None = None,
relative: bool = False, nowfun: Callable | None = None, app: Celery
| None = None)
| 123 | relative: bool = False |
| 124 | |
| 125 | def __init__(self, run_every: float | timedelta | None = None, |
| 126 | relative: bool = False, nowfun: Callable | None = None, app: Celery |
| 127 | | None = None) -> None: |
| 128 | self.run_every = maybe_timedelta(run_every) |
| 129 | self.relative = relative |
| 130 | super().__init__(nowfun=nowfun, app=app) |
| 131 | |
| 132 | def remaining_estimate(self, last_run_at: datetime) -> timedelta: |
| 133 | return remaining( |
nothing calls this directly
no test coverage detected