Skip to content

Commit

Permalink
DRAFT: pytest discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Jul 2, 2024
1 parent 53f2d7d commit 07f3d8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
File renamed without changes.
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 07f3d8c

Please sign in to comment.