(self, tsv_file, total_num)
| 12 | |
| 13 | class TSVFile(object): |
| 14 | def __init__(self, tsv_file, total_num): |
| 15 | self.tsv_file = tsv_file |
| 16 | self._fp = None |
| 17 | self.pid = None |
| 18 | self.total_num = total_num |
| 19 | |
| 20 | def __del__(self): |
| 21 | if self._fp: |
nothing calls this directly
no outgoing calls
no test coverage detected