The public constructor.
(
cls,
parent,
*,
fspath: None = None,
path: Path | None = None,
**kw,
)
| 608 | |
| 609 | @classmethod |
| 610 | def from_parent( |
| 611 | cls, |
| 612 | parent, |
| 613 | *, |
| 614 | fspath: None = None, |
| 615 | path: Path | None = None, |
| 616 | **kw, |
| 617 | ) -> Self: |
| 618 | """The public constructor.""" |
| 619 | return super().from_parent(parent=parent, fspath=fspath, path=path, **kw) |
| 620 | |
| 621 | |
| 622 | class File(FSCollector, abc.ABC): |
nothing calls this directly
no test coverage detected