-
Notifications
You must be signed in to change notification settings - Fork 263
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
Disable callbacks when extension is disabled #661
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd probably call the variable script_protocol
just script
for brevity – or maybe both the type name and the variable should be e.g. SDDPScript
and sddp
?
and keep the module name the same? |
29d47bc
to
5ef7740
Compare
Now that I think of it, I'm not sure the protocol is actually required at all – couldn't we just use the actual script object as a type (guarded against circular imports)?
|
Happy to do that too. I'll make the change. |
Ensure that callbacks (apart from settings and wildcards manager), only run when dynamic prompts is enabled. This builds on #648
5ef7740
to
6b5016c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably one mis-import there?
from sd_dynamic_prompts.settings import on_ui_settings | ||
from sd_dynamic_prompts.wildcards_tab import initialize as initialize_wildcards_tab | ||
|
||
if TYPE_CHECKING: | ||
from sd_dynamic_prompts.sddp_script import SDDPScript |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
from sd_dynamic_prompts.sddp_script import SDDPScript | |
from sd_dynamic_prompts.dynamic_prompting import Script as SDDPScript |
Ensure that callbacks (apart from settings and wildcards manager), only run when dynamic prompts is enabled. This builds on #648