From a27e5160117c4e8a601fb8f16ef6323f4a42dfa8 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Tue, 20 Jun 2017 18:53:39 +0200 Subject: [PATCH] Elided argument in ifcopenshell.file constructor --- src/ifcopenshell-python/ifcopenshell/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/file.py b/src/ifcopenshell-python/ifcopenshell/file.py index 968ab5298b..2f74011914 100644 --- a/src/ifcopenshell-python/ifcopenshell/file.py +++ b/src/ifcopenshell-python/ifcopenshell/file.py @@ -25,7 +25,7 @@ from .entity_instance import entity_instance class file(object): def __init__(self, f=None): - self.wrapped_data = f or ifcopenshell_wrapper.file(True) + self.wrapped_data = f or ifcopenshell_wrapper.file() def create_entity(self,type,*args,**kwargs): e = entity_instance(type) attrs = list(enumerate(args)) + \