From 9d2a79803a79523579380a77f7f11c7665dacc23 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Sat, 9 Aug 2025 16:02:26 +0500 Subject: [PATCH] Fix typo in fe130eb #7008 --- src/bonsai/bonsai/tool/web.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bonsai/bonsai/tool/web.py b/src/bonsai/bonsai/tool/web.py index 9a1924aa4e..66847f0c03 100644 --- a/src/bonsai/bonsai/tool/web.py +++ b/src/bonsai/bonsai/tool/web.py @@ -16,6 +16,7 @@ # You should have received a copy of the GNU General Public License # along with Bonsai. If not, see . +from __future__ import annotations from ifcopenshell.util.classification import get_classification_data, get_references from ifcopenshell.util.selector import filter_elements import ifcopenshell.util.cost @@ -68,7 +69,7 @@ class Web(bonsai.core.tool.Web): @classmethod def get_web_props(cls) -> WebProperties: assert (scene := bpy.context.scene) - return scene.BIMProperties # pyright: ignore[reportAttributeAccessIssue] + return scene.WebProperties # pyright: ignore[reportAttributeAccessIssue] @classmethod def generate_port_number(cls) -> int: