You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromfunctoolsimportcached_propertydefisproperty(obj: Any) ->bool:
"""Check if the object is property."""returnisinstance(obj, (property, cached_property))
And guarded to be 3.8+.
The text was updated successfully, but these errors were encountered:
It's because this property does not pass the check of
isinstance(a, property)
- see https://bugs.python.org/issue41523https://github.com/sphinx-doc/sphinx/blob/3.x/sphinx/util/inspect.py#L305-L307 needs to change to:
And guarded to be
3.8+
.The text was updated successfully, but these errors were encountered: