From 9bb04d3ffca8381844285b2f92187a086799e592 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 9 Aug 2024 14:42:50 +0500 Subject: [PATCH] small fix for bcf docs bcfxml.get_topic actually returns topichandler, not topic --- src/ifcopenshell-python/docs/bcf.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/docs/bcf.rst b/src/ifcopenshell-python/docs/bcf.rst index fe33bcb2e5..fbeb1b7a32 100644 --- a/src/ifcopenshell-python/docs/bcf.rst +++ b/src/ifcopenshell-python/docs/bcf.rst @@ -78,7 +78,7 @@ memory until you call the `save` method. print(comment.author) # Get a particular topic - topic = bcfxml.get_topic(guid) + topic = bcfxml.get_topic(guid).topic # Modify a topic topic.title = "New title"