From 10887dc88e62fe2ba51ecf09c96e7036aee93842 Mon Sep 17 00:00:00 2001 From: Ash Berlin-Taylor Date: Thu, 3 Sep 2020 10:22:20 +0100 Subject: [PATCH] Make `utils.functional.retry_over_time` appear in rendered docs (#1245) 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". --- kombu/utils/functional.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kombu/utils/functional.py b/kombu/utils/functional.py index 30b047747..ccc916126 100644 --- a/kombu/utils/functional.py +++ b/kombu/utils/functional.py @@ -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()