Skip to content

Commit

Permalink
Make sure splitlines is not called on None (#161)
Browse files Browse the repository at this point in the history
Small change that avoids that `splitlines` is called on a `None` object;
this may currently happen if `prop.fget.__doc__` exists and is `None`,
thus causing an exception (`'NoneType' object has no attribute
'splitlines'`).

Co-authored-by: Tosco, Paolo <[email protected]>
  • Loading branch information
ptosco and Tosco, Paolo authored Oct 21, 2023
1 parent bbb1104 commit e367e9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pybind11_stubgen/parser/mixins/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ def handle_property(self, path: QualifiedName, prop: Any) -> Property | None:
result.doc == result.getter.doc
or result.doc
== self._strip_empty_lines(
getattr(prop.fget, "__doc__", "").splitlines()
(getattr(prop.fget, "__doc__", "") or "").splitlines()
)
)
):
Expand Down

0 comments on commit e367e9c

Please sign in to comment.