Skip to content

Commit 77f852b

Browse files
committed
fix: table not displaying on tab
1 parent b05fd8e commit 77f852b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exporter/SynthesisFusionAddin/src/UI/ConfigCommand.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from src.Parser.SynthesisParser.Utilities import guid_occurrence
3030
from src.Types import SELECTABLE_JOINT_TYPES, ExportLocation, ExportMode
3131
from src.UI import FileDialogConfig
32-
from src.DesignRuleChecks import DesignRuleChecks
32+
from src.lib.DesignRuleChecks import DesignRuleChecks
3333

3434
generalConfigTab: GeneralConfigTab.GeneralConfigTab
3535
jointConfigTab: JointConfigTab.JointConfigTab
@@ -302,7 +302,7 @@ def notify(self, html_args: adsk.core.HTMLEventArgs) -> None:
302302
html_args.returnData = "{}"
303303

304304
elif html_args.action == "designRules":
305-
html_args.returnData = json.dumps(DesignRuleChecks().getDesignRules)
305+
html_args.returnData = json.dumps(DesignRuleChecks().getDesignRules())
306306
else:
307307
gm.ui.messageBox(f"Event {html_args.action} arrived<span>{json.dumps(data, indent=2)}</span>")
308308

0 commit comments

Comments
 (0)