Skip to content

Commit 4cc056c

Browse files
committed
Fix formatting
1 parent c40bd5e commit 4cc056c

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
@@ -3471,7 +3471,9 @@ def __repr__(self):
34713471
return "<File: %s>" % (self.name)
34723472

34733473
def __eq__(self, other) -> bool:
3474-
return isinstance(other, File) and bool(conf.lib.clang_File_isEqual(self, other))
3474+
return isinstance(other, File) and bool(
3475+
conf.lib.clang_File_isEqual(self, other)
3476+
)
34753477

34763478
def __ne__(self, other) -> bool:
34773479
return not self.__eq__(other)

0 commit comments

Comments
 (0)