From dcba4847abe41465f62aa1ac8008fe70a411080c Mon Sep 17 00:00:00 2001 From: doctorpangloss <@hiddenswitch.com> Date: Fri, 26 Sep 2025 13:22:04 -0700 Subject: [PATCH] Fix linting issues --- comfy_extras/nodes/nodes_audio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/comfy_extras/nodes/nodes_audio.py b/comfy_extras/nodes/nodes_audio.py index f91c09b40..cf79a6900 100644 --- a/comfy_extras/nodes/nodes_audio.py +++ b/comfy_extras/nodes/nodes_audio.py @@ -514,6 +514,7 @@ class AudioConcat: waveform_1, waveform_2, output_sample_rate = match_audio_sample_rates(waveform_1, sample_rate_1, waveform_2, sample_rate_2) + concatenated_audio: torch.Tensor = waveform_1 if direction == 'after': concatenated_audio = torch.cat((waveform_1, waveform_2), dim=2) elif direction == 'before':