The public constructor.
(
cls,
parent,
*,
fspath: Optional[LEGACY_PATH] = None,
path: Optional[Path] = None,
**kw,
)
| 622 | |
| 623 | @classmethod |
| 624 | def from_parent( |
| 625 | cls, |
| 626 | parent, |
| 627 | *, |
| 628 | fspath: Optional[LEGACY_PATH] = None, |
| 629 | path: Optional[Path] = None, |
| 630 | **kw, |
| 631 | ): |
| 632 | """The public constructor.""" |
| 633 | return super().from_parent(parent=parent, fspath=fspath, path=path, **kw) |
| 634 | |
| 635 | def gethookproxy(self, fspath: "os.PathLike[str]"): |
| 636 | warnings.warn(FSCOLLECTOR_GETHOOKPROXY_ISINITPATH, stacklevel=2) |
nothing calls this directly
no test coverage detected