(log: Optional[List[str]])
| 670 | |
| 671 | |
| 672 | def format_call_log(log: Optional[List[str]]) -> str: |
| 673 | if not log: |
| 674 | return "" |
| 675 | if len(list(filter(lambda x: x.strip(), log))) == 0: |
| 676 | return "" |
| 677 | return "\nCall log:\n" + "\n".join(log) + "\n" |
no outgoing calls
no test coverage detected