mirror of
https://github.com/blender/blender-addons-contrib.git
synced 2025-08-16 16:14:56 +00:00
Extensions: fix flipped check for manifest keys
The values of the manifest weren't being validated since [0].
[0]: 8b3047987f
This commit is contained in:
@ -839,7 +839,7 @@ def pkg_manifest_is_valid_or_error_impl(
|
||||
continue
|
||||
|
||||
# When the default value is None, skip all type checks.
|
||||
if is_default_value and x_val is None:
|
||||
if not (is_default_value and x_val is None):
|
||||
if x_ty is None:
|
||||
pass
|
||||
elif isinstance(x_val, x_ty):
|
||||
|
Reference in New Issue
Block a user