Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/extensions/score_draw_uml_funcs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def draw_module(
if not curr_need:
logger.info(f"{need}: include with id {need_inc} could not be found")
continue
if curr_need["type"] not in ["comp_arc_sta", "mod_view_sta"]:
if curr_need["type"] not in ["comp", "mod"]:
continue
sub_structure, sub_linkage, proc_impl_interfaces, proc_used_interfaces = (
draw_comp_incl_impl_int(
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/score_draw_uml_funcs/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def gen_format(need: dict[str, str]) -> str:

style = ""

if "comp_arc_sta" in need["type"] and need["safety"] == "ASIL_B":
if "comp" in need["type"] and need["safety"] == "ASIL_B":
style = "<<asilb>>"

if "real_arc_int" in need["type"]:
Expand Down
Loading