Node in the hierarchical file tree structure.
| 42 | |
| 43 | @dataclass |
| 44 | class TreeNode: |
| 45 | """Node in the hierarchical file tree structure.""" |
| 46 | files: List[FileStats] = field(default_factory=list) |
| 47 | samples: int = 0 |
| 48 | count: int = 0 |
| 49 | children: Dict[str, 'TreeNode'] = field(default_factory=dict) |
| 50 | |
| 51 | |
| 52 | # ============================================================================ |
no test coverage detected
searching dependent graphs…