Skip to content

Commit c3d6b2d

Browse files
dbiebercopybara-github
authored andcommitted
fix line-too-long lint error
PiperOrigin-RevId: 260037806 Change-Id: I7989608bdb1d4e75822630729e58d3ac6e03eced
1 parent b05ae0d commit c3d6b2d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

fire/docstrings_test.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,10 @@ def test_multisection_docstring(self):
216216
docstring_info = docstrings.parse(docstring)
217217
expected_docstring_info = DocstringInfo(
218218
summary='Docstring summary.',
219-
description='This is the first section of a docstring description.\n\n'
220-
'This is the second section of a docstring description. This docstring\n'
219+
description='This is the first section of a docstring description.'
220+
'\n\n'
221+
'This is the second section of a docstring description. This docstring'
222+
'\n'
221223
'description has just two sections.',
222224
)
223225
self.assertEqual(docstring_info, expected_docstring_info)

0 commit comments

Comments
 (0)