1
0
Fork 0

removed unnecessary utility function

This commit is contained in:
Kim, Jimin 2022-03-17 18:11:28 +09:00
parent c0ab0e4392
commit d522b55fb0

View file

@ -3,7 +3,6 @@ from .constants import content_dir
from importlib.machinery import SourceFileLoader
from os import system, makedirs
from os.path import dirname
from shutil import rmtree
import zipfile
@ -45,13 +44,6 @@ def smart_mkdir(path: str):
pass
def smart_rmtree(path):
try:
rmtree(path)
except:
pass
def copy_file(src: str, dst: str, mode="644"):
"""
Copies src to dst.