Files
pythonocc-step-editor/step_editor/__init__.py
T

14 lines
391 B
Python
Raw Normal View History

from __future__ import annotations
from .model import StepModel
__all__ = ["StepEditorWindow", "StepModel", "main"]
2026-07-29 15:43:28 +08:00
def __getattr__(name: str):
if name in {"StepEditorWindow", "main"}:
from .app import StepEditorWindow, main
return {"StepEditorWindow": StepEditorWindow, "main": main}[name]
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")