Even with document_enum() decorator, :meta hide-value: is not respected. I think this should be supported. I do not have a reason to show the enumeration values 99% of the time.
@document_enum()
class SomeEnum(Enum):
"""
Document this enum.
:meta hide-value:
"""
X = 1
"""Value for something."""
Could also be done at the enum value level, but most of the time I would want this at the top level comment and therefore not requiring @document_enum.
Description
Reference
Even with
document_enum()
decorator,:meta hide-value:
is not respected. I think this should be supported. I do not have a reason to show the enumeration values 99% of the time.Could also be done at the enum value level, but most of the time I would want this at the top level comment and therefore not requiring
@document_enum
.Version