Skip to content

Commit a27e516

Browse files
committed
Elided argument in ifcopenshell.file constructor
1 parent 69c8b7c commit a27e516

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/ifcopenshell-python/ifcopenshell

src/ifcopenshell-python/ifcopenshell/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
class file(object):
2727
def __init__(self, f=None):
28-
self.wrapped_data = f or ifcopenshell_wrapper.file(True)
28+
self.wrapped_data = f or ifcopenshell_wrapper.file()
2929
def create_entity(self,type,*args,**kwargs):
3030
e = entity_instance(type)
3131
attrs = list(enumerate(args)) + \

0 commit comments

Comments
 (0)