Skip to content

Commit

Permalink
Merge pull request #36 from edoburu/bugfix/autodoc-skip-member
Browse files Browse the repository at this point in the history
Fix interference with other `autodoc-skip-member` signal handlers
  • Loading branch information
timobrembeck authored Mar 1, 2023
2 parents 471f23d + 2a5aa20 commit d62711c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Unreleased
----------

* [ `#35 <https://github.com/edoburu/sphinxcontrib-django/issues/35>`_ ] Fix interference with other ``autodoc-skip-member`` signal handlers


Version 2.1 (2023-03-01)
------------------------

Expand Down
2 changes: 1 addition & 1 deletion sphinxcontrib_django/docstrings/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit d62711c

Please sign in to comment.