Skip to content

Commit

Permalink
Fix pydocstyle errors in redis backend.
Browse files Browse the repository at this point in the history
  • Loading branch information
Omer Katz committed Dec 5, 2019
1 parent c8e0a07 commit b68aa04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions celery/backends/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
from celery.utils.functional import dictfilter
from celery.utils.log import get_logger
from celery.utils.time import humanize_seconds

from .asynchronous import AsyncBackendMixin, BaseResultConsumer
from .base import BaseKeyValueStoreBackend

Expand Down Expand Up @@ -149,8 +148,9 @@ def cancel_for(self, task_id):


class RedisBackend(BaseKeyValueStoreBackend, AsyncBackendMixin):
"""
Redis task result store. It makes use of the following commands:
"""Redis task result store.
It makes use of the following commands:
GET, MGET, DEL, INCRBY, EXPIRE, SET, SETEX
"""

Expand Down

0 comments on commit b68aa04

Please sign in to comment.