Skip to content

Commit

Permalink
chore: fix XCConfigurationList assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
legendecas committed Jul 1, 2024
1 parent 0b8f5bf commit 1e108b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylib/gyp/xcodeproj_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ def UpdateProperties(self, properties, do_copy=False):
# Make sure the property conforms to the schema.
(is_list, property_type, is_strong) = self._schema[property][0:3]
if is_list:
if not isinstance(value.__class__, list):
if not isinstance(value, list):
raise TypeError(
property
+ " of "
Expand Down

0 comments on commit 1e108b5

Please sign in to comment.