looking good
All checks were successful
EIVE/-/pipeline/head This commit looks good

This commit is contained in:
2023-11-22 16:40:27 +01:00
parent ae239031ed
commit af02c106b9
8 changed files with 105 additions and 51 deletions

View File

@ -178,7 +178,7 @@ def create_ploc_supv_node() -> CmdTreeNode:
]
info_strs = [getattr(Info, key) for key in dir(OpCode) if not key.startswith("__")]
combined_dict = dict(zip(op_code_strs, info_strs))
node = CmdTreeNode("ploc_supv", "PLOC Supervisor")
node = CmdTreeNode("ploc_supv", "PLOC Supervisor", hide_children_for_print=True)
for op_code, info in combined_dict.items():
node.add_child(CmdTreeNode(op_code, info))
return node