(cls, path, face_index)
| 349 | __match_args__ = ('path', 'face_index') |
| 350 | |
| 351 | def __new__(cls, path, face_index): |
| 352 | ret = super().__new__(cls, path) |
| 353 | ret._face_index = face_index |
| 354 | return ret |
| 355 | |
| 356 | @property |
| 357 | def path(self): |
no outgoing calls
no test coverage detected