mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-27 06:40:16 +08:00
hook breaker
This commit is contained in:
parent
84ec6a53f2
commit
aa11a31717
17
hook_breaker_ac10a0.py
Normal file
17
hook_breaker_ac10a0.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Prevent custom nodes from hooking anything important
|
||||||
|
import comfy.model_management
|
||||||
|
|
||||||
|
HOOK_BREAK = [(comfy.model_management, "cast_to")]
|
||||||
|
|
||||||
|
|
||||||
|
SAVED_FUNCTIONS = []
|
||||||
|
|
||||||
|
|
||||||
|
def save_functions():
|
||||||
|
for f in HOOK_BREAK:
|
||||||
|
SAVED_FUNCTIONS.append((f[0], f[1], getattr(f[0], f[1])))
|
||||||
|
|
||||||
|
|
||||||
|
def restore_functions():
|
||||||
|
for f in SAVED_FUNCTIONS:
|
||||||
|
setattr(f[0], f[1], f[2])
|
||||||
Loading…
Reference in New Issue
Block a user