|
21 | 21 | import src.UI.TaggingConfigTab as TaggingConfigTab |
22 | 22 | from src import APP_WEBSITE_URL, Logging, gm |
23 | 23 | from src.APS.APS import getAuth, getUserInfo |
| 24 | +from src.lib.Handlers import PersistentEventHandler |
| 25 | +from src.lib.Util import convertMassUnitsTo, designMassCalculation |
24 | 26 | from src.Logging import getLogger, logFailure |
25 | 27 | from src.Parser.ExporterOptions import ExporterOptions |
26 | 28 | from src.Parser.SynthesisParser.Utilities import guid_occurrence |
27 | 29 | from src.Types import SELECTABLE_JOINT_TYPES, ExportLocation, ExportMode |
28 | 30 | from src.UI import FileDialogConfig |
29 | | -from src.lib.Handlers import PersistentEventHandler |
30 | | -from src.lib.Util import convertMassUnitsTo, designMassCalculation |
31 | 31 |
|
32 | 32 | generalConfigTab: GeneralConfigTab.GeneralConfigTab |
33 | 33 | jointConfigTab: JointConfigTab.JointConfigTab |
@@ -292,8 +292,6 @@ def notify(self, html_args: adsk.core.HTMLEventArgs) -> None: |
292 | 292 | elif html_args.action == "cancelSelection": |
293 | 293 | gm.ui.terminateActiveCommand() |
294 | 294 | html_args.returnData = "{}" |
295 | | - elif html_args.action == "getDesignChecks": |
296 | | - |
297 | 295 | else: |
298 | 296 | gm.ui.messageBox(f"Event {html_args.action} arrived<span>{json.dumps(data, indent=2)}</span>") |
299 | 297 |
|
|
0 commit comments