From a6980be400c2285bee7c336eacfb85815cde66f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Gonz=C3=A1lez=20Vila?= Date: Wed, 28 Aug 2024 19:40:53 +0200 Subject: [PATCH] add BOPFeatures to BOPTools __init__.py --- src/Mod/Part/BOPTools/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Mod/Part/BOPTools/__init__.py b/src/Mod/Part/BOPTools/__init__.py index abdf8a033c..c0df731f8f 100644 --- a/src/Mod/Part/BOPTools/__init__.py +++ b/src/Mod/Part/BOPTools/__init__.py @@ -30,6 +30,7 @@ BOP-like operations""" # \ingroup PART __all__ = [ +"BOPFeatures", "GeneralFuseResult", "JoinAPI", "JoinFeatures", @@ -41,6 +42,7 @@ __all__ = [ def importAll(): "importAll(): imports all modules of BOPTools package" + from . import BOPFeatures from . import GeneralFuseResult from . import JoinAPI from . import JoinFeatures