This function is called very early during processing begins for AlwaysVisible scripts. You can modify the processing object (p) here, inject hooks, etc. args contains all values returned by components from ui()
(self, p: StableDiffusionProcessing, *args)
| 103 | pass # pylint: disable=unnecessary-pass |
| 104 | |
| 105 | def before_process(self, p: StableDiffusionProcessing, *args): |
| 106 | """ |
| 107 | This function is called very early during processing begins for AlwaysVisible scripts. |
| 108 | You can modify the processing object (p) here, inject hooks, etc. |
| 109 | args contains all values returned by components from ui() |
| 110 | """ |
| 111 | pass # pylint: disable=unnecessary-pass |
| 112 | |
| 113 | def process(self, p: StableDiffusionProcessing, *args): |
| 114 | """ |
no outgoing calls
no test coverage detected