Skip to content

Commit

Permalink
Merge pull request #401 from eric-wieser/fix-inherited-members
Browse files Browse the repository at this point in the history
Small fixes to documentation
  • Loading branch information
utensil authored May 26, 2020
2 parents 941c892 + b7f13ec commit 50f1a08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,13 @@ def add_source_parser(_old_add_source_parser, self, *args, **kwargs):
autodoc_default_options = {
# Make sure that any autodoc declarations show the right members
"members": True,
"inherited-members": True,
# do not show inherited, as this pull in all the sympy members
# "inherited-members": True,
"member-order": "bysource",
# "undoc-members": True,
# "special-members": True,
# "private-members": True,
# "show-inheritance": True,
"show-inheritance": True,
}

#autodoc_default_flags='members'
Expand Down
2 changes: 1 addition & 1 deletion galgebra/atoms.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
""" Sympy primitives for representing atos ga expressions """
""" Sympy primitives for representing atoms of ga expressions """

from typing import Union

Expand Down

0 comments on commit 50f1a08

Please sign in to comment.