diff --git a/src/blenderbim/blenderbim/tool/system.py b/src/blenderbim/blenderbim/tool/system.py index f7043e4ae1..30b10e4364 100644 --- a/src/blenderbim/blenderbim/tool/system.py +++ b/src/blenderbim/blenderbim/tool/system.py @@ -66,7 +66,9 @@ class System(blenderbim.core.tool.System): @classmethod def import_system_attributes(cls, system): - blenderbim.bim.helper.import_attributes2(system, bpy.context.scene.BIMSystemProperties.system_attributes) + props = bpy.context.scene.BIMSystemProperties + props.system_attributes.clear() + blenderbim.bim.helper.import_attributes2(system, props.system_attributes) @classmethod def import_systems(cls):