(self, id, repo)
| 73 | exit_mcode = 17 |
| 74 | |
| 75 | def __init__(self, id, repo): |
| 76 | if isinstance(id, bytes): |
| 77 | id = bin_to_hex(id) |
| 78 | super().__init__(id, repo) |
| 79 | |
| 80 | class ParentPathDoesNotExist(Error): |
| 81 | """The parent path of the repository directory [{}] does not exist.""" |
nothing calls this directly
no test coverage detected