fix extract.py

This commit is contained in:
Milovann Yanatchkov 2024-02-03 13:23:48 +01:00
parent c354085b3b
commit a6b52e416c

View file

@ -20,7 +20,7 @@ def get_walls(model):
i=1 i=1
lst = [] lst = []
for wall in model.by_type("IfcWall"): for wall in model.by_type("IfcWall"):
print(f"{i} {wall.Name}, container: {get_container(wall)} ") print(f"{i}:{wall.Name},container:{get_container(wall)}")
lst.append(wall) lst.append(wall)
i+=1 i+=1
return lst return lst