Exclude FontBase from docs

This commit is contained in:
Florian Bruhin 2020-05-10 20:49:21 +02:00
parent dc3dde593f
commit c1d67c9ef4
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ def _get_configtypes():
inspect.isclass(e) and
# pylint: disable=protected-access
e not in [configtypes.BaseType, configtypes.MappingType,
configtypes._Numeric] and
configtypes._Numeric, configtypes.FontBase] and
# pylint: enable=protected-access
issubclass(e, configtypes.BaseType))
yield from inspect.getmembers(configtypes, predicate)