feat: 完善特征编辑和选择稳定性

This commit is contained in:
2026-07-29 15:43:28 +08:00
parent 720c2dc970
commit c937e13d43
13 changed files with 8294 additions and 290 deletions
+8 -1
View File
@@ -1,6 +1,13 @@
from __future__ import annotations
from .app import StepEditorWindow, main
from .model import StepModel
__all__ = ["StepEditorWindow", "StepModel", "main"]
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}")