Below is one of about 6 or so classes in my script.
When I run it, the registration
bpy.utils.register_class(FramedWall)
errors and I just can’t figure out why. I must be blind or something.
class FramedWall(bpy.types.Operator):
bl_idname = "lumber.Wall"
bl_label = "Framed Wall"
def execute(self, context):
bpy.ops.mesh.primitive_cube_add();
return {'FINISHED'}