CoolFace
Apppublic

cymic/Waifu_Diffusion_Webui

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
errors.py11 linesDownload Raw Back to modules
1import sys2import traceback3 4 5def run(code, task):6    try:7        code()8    except Exception as e:9        print(f"{task}: {type(e).__name__}", file=sys.stderr)10        print(traceback.format_exc(), file=sys.stderr)11