-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to disable custom ComfyScript image metadata injection? & How to properly uninstall? #27
Comments
Replace ComfyScript/src/comfy_script/nodes/__init__.py Lines 167 to 169 in 327a5b7
python -m pip uninstall comfy-script And delete |
Thanks so much for this! |
This issue can be kept open to help other people. I'll add some config options for the transpiler in the future. |
Now this behavior can be disabled by adding a # These settings can also be overriden by:
# - Environment variables
# e.g. `COMFY_SCRIPT_TRANSPILE_HOOK_ENABLED=false`
# - Python code
# e.g.
# ```python
# from comfy_script.config import settings
# settings.transpile.hook.enabled=False
# ```
[transpile.hook]
# When ComfyScript is installed as custom nodes, `SaveImage` and similar nodes will be hooked to automatically save the script as the image's metadata. The script will also be printed to the terminal.
# To disable a feature, change its value to `false`.
save_script = false
print_script = true |
Hi, while the extension is interesting I don't like the extra metadata that gets injected into all generated images. Is there a way to disable this behavior?
Also, what is the proper way to uninstall this extension? Thank you!
The text was updated successfully, but these errors were encountered: