Skip to content

Commit ca2f496

Browse files
committed
Fix formatting
1 parent acd9965 commit ca2f496

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

clang/bindings/python/tests/cindex/test_lib.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
class TestLib(unittest.TestCase):
1313
def test_functions_registered(self):
1414
def get_function_spelling(node):
15-
# The call expressions we are interested in have their spelling in .attr, not .id
15+
# The call expressions we are interested in have
16+
# their spelling in .attr, not .id
1617
if hasattr(node, "attr"):
1718
return node.attr
1819
return ""

0 commit comments

Comments
 (0)