I saved the default cube and exported it as an obj file. I imported it in python no issue.
bpy.ops.import_scene.obj(filepath=obj_path)
bpy.context.scene.objects.active = bpy.context.selected_objects[0]
data_in=bpy.context.scene.objects.active
I then opened a new blender file and made a different geometry with a few modifications. I attempted to load the obj file again. An error occurs:
An error ocurred while starting the kernel
AL lib: (EE) UpdateDeviceParams: Failed to set 44100hz, got 48000hz instead
Error: Not freed memory blocks: 8, total unfreed memory 0.008392 MB
This error only seems to happen when loading the new object into python, but sometimes it happens on the old object. How can I fix or ignore this?
