(self, path)
| 26 | |
| 27 | class HeaderFile(object): |
| 28 | def __init__(self, path): |
| 29 | self.path = path |
| 30 | self.blame_list = self.get_blame_list() |
| 31 | |
| 32 | @classmethod |
| 33 | def get_api_header_files(cls, options): |
nothing calls this directly
no test coverage detected