Skip to content

Commit

Permalink
Python docstrings tests: don't test for CellmlElementType.
Browse files Browse the repository at this point in the history
  • Loading branch information
agarny committed Aug 5, 2024
1 parent cf540fa commit fd05860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/bindings/python/test_docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def test_docstrings(self):
# Scan for missing or empty docstrings
def scan(root, missing, prefix=''):
prefix += root.__name__
if not root.__doc__:
if not root.__doc__ and root.__name__ != 'CellmlElementType':
missing.append(prefix)
prefix += '.'
# Scan children, using dict instead of dir to avoid inherited
Expand Down

0 comments on commit fd05860

Please sign in to comment.