From b2d3f0ae82b9f05cf594f3c82cfe60e14138ba2e Mon Sep 17 00:00:00 2001 From: arun Date: Thu, 2 Apr 2026 07:21:23 +0000 Subject: [PATCH] Update Topology.py - Bug in line 2572 modified the function call to match the function definition for the function `convert_entity` --- src/topologicpy/Topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/topologicpy/Topology.py b/src/topologicpy/Topology.py index 1b5109ad..8f1d7a8d 100644 --- a/src/topologicpy/Topology.py +++ b/src/topologicpy/Topology.py @@ -2569,7 +2569,7 @@ def convert_insert(entity, file, sides=16): converted_entities = [] for block_entity in block: - converted_entity = convert_entity(block_entity, sides=sides) + converted_entity = convert_entity(block_entity, file, sides=sides) if converted_entity is not None: converted_entities.append(converted_entity)