(line: str)
| 168 | |
| 169 | |
| 170 | def parse_mypy_args(line: str) -> list[str]: |
| 171 | m = re.match("# flags: (.*)$", line) |
| 172 | if not m: |
| 173 | return [] # No args; mypy will spit out an error. |
| 174 | return m.group(1).split() |
no test coverage detected
searching dependent graphs…