(results, audio)
| 460 | |
| 461 | |
| 462 | def attach_audio(results, audio): |
| 463 | if audio is None: |
| 464 | return results |
| 465 | wrapped = AudioFrameList(results if isinstance(results, list) else list(results)) |
| 466 | wrapped.audio = audio |
| 467 | return wrapped |
| 468 | |
| 469 | |
| 470 | def process_decode(p: processing.StableDiffusionProcessing, output): |
no test coverage detected