IfcOpenShell API now uses kwargs to improve user syntax. See #1399.

This commit is contained in:
Dion Moult
2021-03-27 19:14:32 +11:00
parent ca24838a3f
commit 406b8b4540
109 changed files with 109 additions and 109 deletions
@@ -1,7 +1,7 @@
import ifcopenshell
class Usecase:
def __init__(self, file, settings={}):
def __init__(self, file, **settings):
self.file = file
self.settings = {}
for key, value in settings.items():