>>134
animatediffの生成物とかバックアップファイル並みに残ってたわ、extentions系で使っているのかな
debug起動している人用に削除コマンドを置いておくわ
```
# launch.py

def clear_gradio_temp():
LOCALAPPDATA = os.environ['LOCALAPPDATA']
GRADIO_TEMP_PATH = LOCALAPPDATA + '\Temp\gradio'
shutil.rmtree(GRADIO_TEMP_PATH)
os.mkdir(GRADIO_TEMP_PATH)

def main():
clear_gradio_temp()

if args.dump_sysinfo:
...
```