Remove the file at the given path. Dangerous operation. Args: path: The path to the file to remove. Raises: FileNotFoundError: If the file does not exist.
(path: PathType)
| 151 | @staticmethod |
| 152 | @abstractmethod |
| 153 | def remove(path: PathType) -> None: |
| 154 | """Remove the file at the given path. Dangerous operation. |
| 155 | |
| 156 | Args: |
| 157 | path: The path to the file to remove. |
| 158 | |
| 159 | Raises: |
| 160 | FileNotFoundError: If the file does not exist. |
| 161 | """ # noqa: DOC502 |
| 162 | |
| 163 | @staticmethod |
| 164 | @abstractmethod |
no outgoing calls