schedules.py 243 B

1234567
  1. import warnings
  2. from celery.schedules import schedule, crontab_parser, crontab
  3. __all__ = ["schedule", "crontab_parser", "crontab"]
  4. warnings.warn(DeprecationWarning(
  5. "celery.task.schedules is deprecated and renamed to celery.schedules"))