X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPythonAPI%2Fmodel%2F__init__.py;h=869da976742b41c5c7f2c30c808aaaf819760236;hb=88ee9b2b81cf93a6324336b57e30cc8a3a487499;hp=e0c625f4d82c824ed3e3aa09bab251e3717ae224;hpb=380f01e1fce1a012267d604a1190d04bf4659447;p=modules%2Fshaper.git diff --git a/src/PythonAPI/model/__init__.py b/src/PythonAPI/model/__init__.py index e0c625f4d..869da9767 100644 --- a/src/PythonAPI/model/__init__.py +++ b/src/PythonAPI/model/__init__.py @@ -1,4 +1,4 @@ -# Copyright (C) 2015-2020 CEA/DEN, EDF R&D +# Copyright (C) 2015-2022 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -44,3 +44,14 @@ from .partset import * from .primitives import * from .gdml import * from .tests import * + +# Add-on features + +from .addons import * +# move functions from .addons to top level (model) package +import inspect +for attribute_name in dir(addons): + attribute = getattr(addons, attribute_name) + if inspect.isfunction(attribute): + globals()[attribute_name] = attribute +del inspect