The issue was that the enum property expected a default of `Object` which wasn't present in the default enum. Error was: `EnumProperty(..., default='OBJECT'): not found in enum members` Fixed it by constructing a simple `EnumPropertyItem []` with the `Object` entry. Pull Request: https://projects.blender.org/blender/blender/pulls/126963