Describe the bug
The enum GeomType is not exposed through the moldflow package's __init__.py file.
As a result, importing from the moldflow package doesn't work as expected.
from moldflow import GeomType
Current workaround:
Importing the enum from the common module of the package works and it can be used.
from moldflow.common import GeomType
Expected behavior
We should be able to import GeomType from the moldflow package like the rest of the enums.
Environment:
- OS: Windows 11
- Python Version: 3.10.11
- Package Version: 26.0.3
- Moldflow Synergy Version: 2026.1
Describe the bug
The enum
GeomTypeis not exposed through the moldflow package's__init__.pyfile.As a result, importing from the moldflow package doesn't work as expected.
Current workaround:
Importing the enum from the
commonmodule of the package works and it can be used.Expected behavior
We should be able to import
GeomTypefrom the moldflow package like the rest of the enums.Environment: