diff --git a/CHANGES.rst b/CHANGES.rst index b8db4b3..4a5db6d 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,12 @@ Changelog ========= +Unreleased +---------- + +* [ `#35 `_ ] Fix interference with other ``autodoc-skip-member`` signal handlers + + Version 2.1 (2023-03-01) ------------------------ diff --git a/sphinxcontrib_django/docstrings/__init__.py b/sphinxcontrib_django/docstrings/__init__.py index ff172de..d029968 100644 --- a/sphinxcontrib_django/docstrings/__init__.py +++ b/sphinxcontrib_django/docstrings/__init__.py @@ -144,7 +144,7 @@ def autodoc_skip(app, what, name, obj, skip, options): if name in INCLUDE_MEMBERS: return False - return skip + return None def improve_docstring(app, what, name, obj, options, lines):