docstring quickfix

This commit is contained in:
Michael Poluektov 2024-11-22 20:51:16 +00:00
parent c4eacbfc0f
commit b4e7957a00

View File

@ -109,9 +109,12 @@ def parse_docstring(docstring):
for line in docstring.splitlines():
match = param_pattern.match(line.strip())
if match:
param_name, param_description = match.groups()
param_descriptions[param_name] = param_description
if not match:
continue
param_name, param_description = match.groups()
if param_name.startswith("__"):
continue
param_descriptions[param_name] = param_description
return param_descriptions