multinet / modules /import_hook.py
kingpreyansh's picture
Sunny's changes Automatic1111 (#1)
c4aa815
raw history blame
No virus
204 Bytes
import sys
# this will break any attempt to import xformers which will prevent stability diffusion repo from trying to use it
if "--xformers" not in "".join(sys.argv):
sys.modules["xformers"] = None