Skip to content

Commit bac0c3e

Browse files
committed
DocumentationComment.py: Pass indent
Pass `indent` instead of `int`. This fixes the `pydocbear` test failure.
1 parent 1218dc4 commit bac0c3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coalib/bearlib/languages/documentation/DocumentationComment.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def from_metadata(cls, doccomment, docstyle_definition,
201201
... Parameter(name='age', desc=' Age\n')]
202202
>>> str(DocumentationComment.from_metadata(
203203
... parsed_doc, python_default,
204-
... python_default.markers[0], 4,
204+
... python_default.markers[0], ' ',
205205
... TextRange.from_values(0, 0, 0, 0)))
206206
'\nDescription\n:param age: Age\n'
207207

0 commit comments

Comments
 (0)