Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kronenthaler committed Jun 26, 2024
1 parent 78e45a5 commit 093dc90
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions pbxproj/pbxextensions/ProjectFiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,8 @@ def remove_file_by_id(self, file_id, target_name=None):
target.remove_build_phase(build_phase)

# remove it iff it's removed from all targets or no build file reference it
if len([
True
for x in self.objects.get_objects_in_section('PBXBuildFile')
if hasattr(x, 'fileRef') == file_ref.get_id()
]) != 0:
if len([1 for x in self.objects.get_objects_in_section('PBXBuildFile') if
hasattr(x, 'fileRef') and x.fileRef == file_ref.get_id()]) != 0:
return True

# remove the file from any groups if there is no reference from any target
Expand Down

0 comments on commit 093dc90

Please sign in to comment.