| 179 | |
| 180 | |
| 181 | class MockPath: |
| 182 | def __init__(self, path: Path, st_mtime: int): |
| 183 | self.path = path |
| 184 | self.parent = self.path.parent |
| 185 | self.st_mtime = st_mtime |
| 186 | |
| 187 | def lstat(self): |
| 188 | return self |
| 189 | |
| 190 | |
| 191 | # labeled_folders: (has_H5, H5_st_mtime, folder_name) |
no outgoing calls