Skip to content

Commit 283e3a7

Browse files
dbiebercopybara-github
authored andcommitted
disable protected-access check for docstrings_test
PiperOrigin-RevId: 260040819 Change-Id: If6b6eae54f59db76818fe662c24a857d77100b9a
1 parent c3d6b2d commit 283e3a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fire/docstrings_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def test_strip_blank_lines(self):
238238
lines = [' ', ' foo ', ' ']
239239
expected_output = [' foo ']
240240

241-
self.assertEqual(docstrings._strip_blank_lines(lines), expected_output)
241+
self.assertEqual(docstrings._strip_blank_lines(lines), expected_output) # pylint: disable=protected-access
242242

243243

244244
if __name__ == '__main__':

0 commit comments

Comments
 (0)