Skip to content

Commit deea255

Browse files
committed
Fix formatting again
1 parent 0fd964c commit deea255

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
@@ -335,7 +335,9 @@ def is_in_system_header(self):
335335
return conf.lib.clang_Location_isInSystemHeader(self) # type: ignore [no-any-return]
336336

337337
def __eq__(self, other):
338-
return isinstance(other, SourceLocation) and conf.lib.clang_equalLocations(self, other)
338+
return isinstance(other, SourceLocation) and conf.lib.clang_equalLocations(
339+
self, other
340+
)
339341

340342
def __ne__(self, other):
341343
return not self.__eq__(other)

0 commit comments

Comments
 (0)