(self, context)
| 376 | return props.author |
| 377 | |
| 378 | def execute(self, context): |
| 379 | bcfxml = bcfstore.BcfStore.get_bcfxml() |
| 380 | assert bcfxml |
| 381 | |
| 382 | props = tool.Bcf.get_bcf_props() |
| 383 | bcfxml.add_topic("New Topic", "", props.author) |
| 384 | bpy.ops.bim.load_bcf_topics() |
| 385 | return {"FINISHED"} |
| 386 | |
| 387 | |
| 388 | class AddBcfBimSnippet(bpy.types.Operator): |
nothing calls this directly
no test coverage detected