(self, id_: Tuple[str, ...])
| 277 | ) |
| 278 | |
| 279 | def get_all_current(self, id_: Tuple[str, ...]) -> Set[Script]: |
| 280 | with self._catch_revision_errors(): |
| 281 | return cast(Set[Script], self.revision_map._get_all_current(id_)) |
| 282 | |
| 283 | def get_revision(self, id_: str) -> Script: |
| 284 | """Return the :class:`.Script` instance with the given rev id. |
no test coverage detected