Skip to content

Commit d3f4f4c

Browse files
authored
fix: forward docstrings on property bindables (#156)
1 parent 2773dce commit d3f4f4c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ requires = ['poetry-core']
1414
build-backend = 'poetry.core.masonry.api'
1515

1616
[tool.poetry]
17-
version = '0.23.3rc8'
17+
version = '0.23.4rc1'
1818
packages = [{include = 'opvious', from = 'src'}]
1919

2020
[tool.poetry.dependencies]

src/opvious/common.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ def __init__(
217217
self._wrap = wrap
218218
self._lazy = lazy
219219
self._bindings: Any = weakref.WeakKeyDictionary()
220+
self.__doc__ = self._body.__doc__
220221

221222
def _apply(self, owner: Any, bind: bool = True) -> Any:
222223
wrap = self._wrap(owner) if self._lazy else self._wrap

0 commit comments

Comments
 (0)