From 963ffa39b763226839c5efd7727e7d64fefc0593 Mon Sep 17 00:00:00 2001 From: Gorgious56 Date: Tue, 18 Jul 2023 16:17:51 +0200 Subject: [PATCH] Housekeeping - Reorder suggestion dictionary keys alphabetically --- .../blenderbim/bim/module/root/data.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/root/data.py b/src/blenderbim/blenderbim/bim/module/root/data.py index 4bd5cecab7..d9b250dc70 100644 --- a/src/blenderbim/blenderbim/bim/module/root/data.py +++ b/src/blenderbim/blenderbim/bim/module/root/data.py @@ -111,18 +111,18 @@ class IfcClassData: suggestions = defaultdict(list) suggestions.update( { - "IfcWall": ["Glazing", "Glass", "Pane"], - "IfcWindow": ["Glazing", "Glass", "Pane"], - "IfcPlate": ["Glazing", "Glass", "Pane"], - "IfcFurniture": ["Signage"], - "IfcSlab": ["Hob"], - "IfcCovering": ["Flashing", "Capping"], - "IfcCableSegment": ["Lighting Rod"], - "IfcSensor": ["Card Reader", "Fob Reader"], - "IfcSwitchingDevice": ["Reed Switch", "Electric Isolating Switch"], "IfcActuator": ["Electric Strike"], "IfcAirTerminalBox": ["VAV Box"], + "IfcCableSegment": ["Lighting Rod"], + "IfcCovering": ["Flashing", "Capping"], + "IfcFurniture": ["Signage"], + "IfcPlate": ["Glazing", "Glass", "Pane"], + "IfcSensor": ["Card Reader", "Fob Reader"], + "IfcSlab": ["Hob"], + "IfcSwitchingDevice": ["Reed Switch", "Electric Isolating Switch"], "IfcUnitaryEquipment": ["Fan Coil Unit"], + "IfcWall": ["Glazing", "Glass", "Pane"], + "IfcWindow": ["Glazing", "Glass", "Pane"], } ) version = tool.Ifc.get_schema()