diff --git a/tubesync/sync/utils.py b/tubesync/sync/utils.py index 617bccca..9b18248b 100644 --- a/tubesync/sync/utils.py +++ b/tubesync/sync/utils.py @@ -117,14 +117,6 @@ def file_is_editable(filepath): return False -def mkdir_p(arg_path, mode=0o777): - ''' - Reminder: mode only affects the last directory - ''' - dirpath = Path(arg_path) - return dirpath.mkdir(mode=mode, parents=True, exist_ok=True) - - def write_text_file(filepath, filedata): if not isinstance(filedata, str): raise TypeError(f'filedata must be a str, got "{type(filedata)}"')