(self, name: str)
| 167 | self.destinations[name] = Destination(name, type, self, args) |
| 168 | |
| 169 | def get_destination(self, name: str) -> Destination: |
| 170 | d = self.destinations.get(name) |
| 171 | if not d: |
| 172 | fail(f"Destination does not exist: {name!r}") |
| 173 | return d |
| 174 | |
| 175 | def get_destination_buffer( |
| 176 | self, |
no test coverage detected