We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2656a31 commit d2fcbdaCopy full SHA for d2fcbda
clang/bindings/python/clang/cindex.py
@@ -3471,7 +3471,9 @@ def __repr__(self):
3471
return "<File: %s>" % (self.name)
3472
3473
def __eq__(self, other) -> bool:
3474
- return isinstance(other, File) and bool(conf.lib.clang_File_isEqual(self, other))
+ return isinstance(other, File) and bool(
3475
+ conf.lib.clang_File_isEqual(self, other)
3476
+ )
3477
3478
def __ne__(self, other) -> bool:
3479
return not self.__eq__(other)
0 commit comments