Return True if self is a file
(self)
| 97 | |
| 98 | @abc.abstractmethod |
| 99 | def is_file(self) -> bool: |
| 100 | """ |
| 101 | Return True if self is a file |
| 102 | """ |
| 103 | |
| 104 | def joinpath(self, *descendants: StrPath) -> "Traversable": |
| 105 | """ |
no outgoing calls
no test coverage detected