We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59b0d58 commit 4f03b05Copy full SHA for 4f03b05
logwrap/log_on_access.py
@@ -196,7 +196,13 @@ def __init__(
196
self.__owner: typing.Optional[type] = None
197
198
def __set_name__(self, owner: typing.Optional[type], name: str) -> None:
199
- """Set __name__ and __objclass__ property."""
+ """Set __name__ and __objclass__ property.
200
+
201
+ :param owner: owner class, where descriptor applied
202
+ :type owner: typing.Optional[type]
203
+ :param name: descriptor name
204
+ :type name: str
205
+ """
206
self.__owner = owner
207
self.__name = name
208
0 commit comments