(self, fname, isSummary=False)
| 6 | |
| 7 | class parseMD: |
| 8 | def __init__(self, fname, isSummary=False): |
| 9 | self.fname = fname |
| 10 | self.isSummary = isSummary |
| 11 | |
| 12 | def get_title(self): |
| 13 | lines = open(self.fname) |
nothing calls this directly
no outgoing calls
no test coverage detected