From 0af7dc7699797ff6ccd62caf22912374cf0b34c7 Mon Sep 17 00:00:00 2001 From: Showdown76py Date: Mon, 19 May 2025 13:14:38 +0200 Subject: [PATCH] fix: bug --- ai/processor.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ai/processor.py b/ai/processor.py index 3df2440..472a77a 100644 --- a/ai/processor.py +++ b/ai/processor.py @@ -84,9 +84,7 @@ class AIProcessor: ai.compute.take_screenshot() ) - outputs.append( - *self.process(nextsteps, img) - ) + outputs.extend( x for x in self.process(nextsteps, img) ) return [ { "name": tc.function.name,