(x: PlaybookEntry)
| 70 | |
| 71 | |
| 72 | def _fmt_entry(x: PlaybookEntry): |
| 73 | arrow = ">>" if isinstance(x, events.Event) else "<<" |
| 74 | x = str(x) |
| 75 | x = re.sub("Placeholder:None", "<unset placeholder>", x, flags=re.IGNORECASE) |
| 76 | x = re.sub("Placeholder:", "", x, flags=re.IGNORECASE) |
| 77 | x = textwrap.indent(x, " ")[5:] |
| 78 | return f"{arrow} {x}" |
| 79 | |
| 80 | |
| 81 | def _merge_sends( |
no outgoing calls
no test coverage detected
searching dependent graphs…