Skip to content

Commit d62711c

Browse files
authored
Merge pull request #36 from edoburu/bugfix/autodoc-skip-member
Fix interference with other `autodoc-skip-member` signal handlers
2 parents 471f23d + 2a5aa20 commit d62711c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGES.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Changelog
22
=========
33

4+
Unreleased
5+
----------
6+
7+
* [ `#35 <https://github.com/edoburu/sphinxcontrib-django/issues/35>`_ ] Fix interference with other ``autodoc-skip-member`` signal handlers
8+
9+
410
Version 2.1 (2023-03-01)
511
------------------------
612

sphinxcontrib_django/docstrings/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def autodoc_skip(app, what, name, obj, skip, options):
144144
if name in INCLUDE_MEMBERS:
145145
return False
146146

147-
return skip
147+
return None
148148

149149

150150
def improve_docstring(app, what, name, obj, options, lines):

0 commit comments

Comments
 (0)