()
| 788 | if start_marker in line: |
| 789 | in_block = True |
| 790 | continue |
| 791 | if end_marker in line: |
| 792 | in_block = False |
| 793 | break |
| 794 | |
| 795 | # Works for both the startup line and alias lines like: alias e='cd "..." && python3 ...' |
| 796 | if in_block: |
| 797 | match = re.search(r'cd\s+\"([^\"]+)\"', line) |
no test coverage detected