From 1778656bd5b44b27a9a049588d053f9ef3137463 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 20 Mar 2026 13:30:02 +0500 Subject: [PATCH] ids_doc_generator - fix Property args missed (ed8eb75) TypeError: Property.__init__() got an unexpected keyword argument 'name' --- src/ifctester/test/ids_doc_generator.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ifctester/test/ids_doc_generator.py b/src/ifctester/test/ids_doc_generator.py index 3a08b89544..4c1bcf5575 100644 --- a/src/ifctester/test/ids_doc_generator.py +++ b/src/ifctester/test/ids_doc_generator.py @@ -304,8 +304,8 @@ restriction = ifctester.ids.Restriction(options={"pattern": "(-|[0-9]{2,3})\/(-| spec.requirements.append( ifctester.ids.Property( propertySet="Pset_WallCommon", - name="FireRating", - datatype="IfcLabel", + baseName="FireRating", + dataType="IfcLabel", value=restriction, instructions="Fire rating is specified using the Fire Resistance Level as defined in the Australian National Construction Code (NCC) 2019. Valid examples include -/-/-, -/120/120, and 60/60/60", )