Closed Natim closed 3 years ago
The problem here is that a reify'd property isn't callable—@reify
has the same API as @property
. So Sphinx is looking for a callable object (not sure why, I don't know what your docs look like), but gets something that looks like a property.
Yes but it is missing some things that property is doing (doc, annotation, etc). If figured out a fix in #3656.
If I understand correctly this is because the reify decorator doesn't pass along the function signature.