diff --git a/rwx/fs/__init__.py b/rwx/fs/__init__.py index ee1925d..1b9e811 100644 --- a/rwx/fs/__init__.py +++ b/rwx/fs/__init__.py @@ -69,7 +69,11 @@ def read_file_text(file_path: Path, charset: str = CHARSET) -> str: def wipe(path: Path) -> None: - """Wipe provided path, whether directory or file.""" + """Wipe provided path, whether directory or file. + + :param path: target path + :type path: Path + """ try: shutil.rmtree(path) except NotADirectoryError: