comment out unused folder make

This commit is contained in:
wataru 2023-01-15 00:34:38 +09:00
parent b7851dd171
commit e8de2df14a
2 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ from restapi.mods.FileUploader import upload_file, concat_file_chunks
from voice_changer.VoiceChangerManager import VoiceChangerManager
UPLOAD_DIR = "upload_dir"
os.makedirs(UPLOAD_DIR, exist_ok=True)
# os.makedirs(UPLOAD_DIR, exist_ok=True)
MODEL_DIR = "MMVC_Trainer/logs"
os.makedirs(MODEL_DIR, exist_ok=True)
# os.makedirs(MODEL_DIR, exist_ok=True)
class MMVC_Rest_Fileuploader:
def __init__(self, voiceChangerManager:VoiceChangerManager):

View File

@ -18,7 +18,7 @@ from restapi.mods.Trainer_Speaker import mod_delete_speaker
from dataclasses import dataclass
INFO_DIR = "info"
os.makedirs(INFO_DIR, exist_ok=True)
# os.makedirs(INFO_DIR, exist_ok=True)
@dataclass
class ExApplicationInfo():