(line: str)
| 133 | current_plugin = None |
| 134 | |
| 135 | def parse_entry_point(line: str) -> Tuple[str, str]: |
| 136 | entry_point, raw_group = line.strip().split() |
| 137 | return entry_point, raw_group[1:-1] |
| 138 | |
| 139 | def parse_plugin(line: str) -> Tuple[str, str]: |
| 140 | plugin, raw_version = line.strip().split() |