Skip to content

Commit

Permalink
Make utils.functional.retry_over_time appear in rendered docs (#1245)
Browse files Browse the repository at this point in the history
Since this module has `__all__`, autodoc will (by default) only show docs for those
members, meaning retry_over_time is not shown in the rendered docs.

This function is used by the Redis result backend in Celery, and it has a doc
comment so it should be "public".
  • Loading branch information
ashb committed Sep 3, 2020
1 parent 2becce3 commit 10887dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kombu/utils/functional.py
Expand Up @@ -16,7 +16,7 @@

__all__ = (
'LRUCache', 'memoize', 'lazy', 'maybe_evaluate',
'is_list', 'maybe_list', 'dictfilter',
'is_list', 'maybe_list', 'dictfilter', 'retry_over_time',
)

KEYWORD_MARK = object()
Expand Down

0 comments on commit 10887dc

Please sign in to comment.