(self)
| 23 | |
| 24 | class ParallelDevData: |
| 25 | def __init__(self): |
| 26 | self.commits_rank = -1 |
| 27 | self.commits = -1 |
| 28 | self.lines_rank = -1 |
| 29 | self.lines = -1 |
| 30 | self.ownership_rank = -1 |
| 31 | self.ownership = -1 |
| 32 | self.couples_index = -1 |
| 33 | self.couples_cluster = -1 |
| 34 | self.commit_coocc_index = -1 |
| 35 | self.commit_coocc_cluster = -1 |
| 36 | |
| 37 | def __str__(self): |
| 38 | return str(self.__dict__) |
nothing calls this directly
no outgoing calls
no test coverage detected