Skip to content

Commit 09b9edd

Browse files
committed
Fix style.
1 parent 7ecb3cf commit 09b9edd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

unittests/test_comments.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,15 @@ def test(self):
6868
tmethod = tclass.member_functions()[0]
6969

7070
self.assertIn("comment", dir(tmethod))
71-
self._check_comment_content(["/// cxx comment", "/// with multiple lines"],
71+
self._check_comment_content(["/// cxx comment",
72+
"/// with multiple lines"],
7273
tmethod.comment)
7374

7475
tconstructor = tclass.constructors()[0]
7576

7677
self.assertIn("comment", dir(tconstructor))
77-
self._check_comment_content(["/** doc comment */"], tconstructor.comment)
78+
self._check_comment_content(["/** doc comment */"],
79+
tconstructor.comment)
7880

7981
for indx, cmt in enumerate(['//! mutable field comment',
8082
"/// bit field comment"]):

0 commit comments

Comments
 (0)