mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 13:36:35 +00:00
Remove mkdir_p
from sync/utils.py
This commit is contained in:
parent
dc0edef562
commit
f097b6b4e0
@ -117,14 +117,6 @@ def file_is_editable(filepath):
|
|||||||
return False
|
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):
|
def write_text_file(filepath, filedata):
|
||||||
if not isinstance(filedata, str):
|
if not isinstance(filedata, str):
|
||||||
raise TypeError(f'filedata must be a str, got "{type(filedata)}"')
|
raise TypeError(f'filedata must be a str, got "{type(filedata)}"')
|
||||||
|
Loading…
Reference in New Issue
Block a user