Skip to content

Commit

Permalink
DocumentationComment.py: Pass indent
Browse files Browse the repository at this point in the history
Pass `indent` instead of `int`.
This fixes the `pydocbear` test failure.
  • Loading branch information
damngamerz committed Jun 25, 2017
1 parent 1218dc4 commit bac0c3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def from_metadata(cls, doccomment, docstyle_definition,
... Parameter(name='age', desc=' Age\n')] ... Parameter(name='age', desc=' Age\n')]
>>> str(DocumentationComment.from_metadata( >>> str(DocumentationComment.from_metadata(
... parsed_doc, python_default, ... parsed_doc, python_default,
... python_default.markers[0], 4, ... python_default.markers[0], ' ',
... TextRange.from_values(0, 0, 0, 0))) ... TextRange.from_values(0, 0, 0, 0)))
'\nDescription\n:param age: Age\n' '\nDescription\n:param age: Age\n'
Expand Down

0 comments on commit bac0c3e

Please sign in to comment.