From 7c8fdefcb6ddb52f103698268af5fa56a525302f Mon Sep 17 00:00:00 2001 From: Pavel Date: Tue, 27 May 2025 00:56:33 +0700 Subject: [PATCH] fix https://github.com/poly-hammer/BlenderTools/issues/135 Comma were skipped, so as a consequence: __all__ = ['fbx_b3' 'fbx_b4'] become: __all__ = ['fbx_b3fbx_b4'] (python strings concatenating when follow each other and both fbx_b3, fbx_b4 not available --- src/addons/send2ue/core/io/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/addons/send2ue/core/io/__init__.py b/src/addons/send2ue/core/io/__init__.py index adf1d7de..b74b7cba 100644 --- a/src/addons/send2ue/core/io/__init__.py +++ b/src/addons/send2ue/core/io/__init__.py @@ -1,6 +1,6 @@ from . import fbx_b3, fbx_b4 __all__ = [ - 'fbx_b3' + 'fbx_b3', 'fbx_b4' ]