Skip to content

Commit

Permalink
fix: test load error
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeCrassous committed Apr 2, 2021
1 parent ed40c1e commit c9091d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mixer/blender_data/specifics.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def _resize_geometry_types():
}

_node_groups = (T.ShaderNodeGroup, T.CompositorNodeGroup, T.TextureNodeGroup)
if bpy.app.version >= (2, 92, 0):
if bpy.app.version is not None and bpy.app.version >= (2, 92, 0):
_node_groups = _node_groups + (T.GeometryNodeGroup,)


Expand Down

0 comments on commit c9091d3

Please sign in to comment.