Skip to content

Commit

Permalink
Fix interference with other autodoc-skip-member signal handlers
Browse files Browse the repository at this point in the history
  • Loading branch information
timobrembeck committed Mar 1, 2023
1 parent 471f23d commit 2a5aa20
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 2a5aa20

Please sign in to comment.