Why mkdocstrings doesn't print the type of the property?
I have this:
@property
@abstractmethod
def rounding_method(self) -> RoundingMethod:
"""
The rounding method used to round/floor the PTS (Presentation Time Stamp).
"""
pass
I get this result:
rounding_method abstractmethod property
The rounding method used to round/floor the PTS (Presentation Time Stamp).
I am expecting the type (RoundingMethod) to be generated somewhere