Skip to content

Commit 7ffb50a

Browse files
committed
Fix a Python formatting issue.
1 parent 6fe4155 commit 7ffb50a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clang/bindings/python/clang/cindex.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2602,7 +2602,9 @@ def get_fully_qualified_name(self, policy, with_global_ns_prefix = False):
26022602
policy - This PrintingPolicy can further refine the type formatting
26032603
with_global_ns_prefix - If true, function will prepend a '::' to qualified names
26042604
"""
2605-
return _CXString.from_result(conf.lib.clang_getFullyQualifiedName(self, policy, with_global_ns_prefix))
2605+
return _CXString.from_result(
2606+
conf.lib.clang_getFullyQualifiedName(self, policy, with_global_ns_prefix)
2607+
)
26062608

26072609
def is_const_qualified(self):
26082610
"""Determine whether a Type has the "const" qualifier set.

0 commit comments

Comments
 (0)