From: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> Change the docstring for LineRequest.__init__() so that when it appears in sphinx docs as part of the class description, it won't sound as if the class was not to be used at all. Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@xxxxxxxxxx> --- bindings/python/gpiod/line_request.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/bindings/python/gpiod/line_request.py b/bindings/python/gpiod/line_request.py index ef53e16..0220ba3 100644 --- a/bindings/python/gpiod/line_request.py +++ b/bindings/python/gpiod/line_request.py @@ -29,10 +29,8 @@ class LineRequest: def __init__(self, req: _ext.Request): """ - DON'T USE - - LineRequest objects can only be instantiated by a Chip parent. This is - not part of stable API. + Note: LineRequest objects can only be instantiated by a Chip parent. + LineRequest.__init__() is not part of stable API. """ self._req: Union[_ext.Request, None] = req self._chip_name: str -- 2.45.2