aboutsummaryrefslogtreecommitdiff
path: root/modules/import_hook.py
blob: 28c67dfa897abec5eeb4cfac3da79458d6fee278 (plain)
1
2
3
4
5
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